2020-08-27 17:18:57 +08:00

29 lines
706 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="article">
<h1>快速上手</h1>
<h2>引入 fes-ui</h2>
<p>一般在 webpack 入口页面 main.js 中如下配置</p>
<markdown></markdown>
<h2>组件使用规范</h2>
<p>使用:prop传递数据格式为 数字布尔值或函数时必须带:(兼容String除外具体看组件文档)</p>
</div>
</template>
<script type="text/ecmascript-6">
import markdown from './md/play.md'
export default {
components: {
markdown
},
data: function () {
return {
}
},
ready: function () {
},
methods: {
}
}
</script>