@zhangqc/plugin-dumi-vue
dumi 插件 用于展示 vue sfc 组件
# or yarn
$ npm install @zhangqc/plugin-dumi-vue
_ 目前只支持 vue @2.6.14 _
$ npm run build --watch
$ npm run start
Configure in .umirc.js
,
export default {
plugins: ['@zhangqc/plugin-dumi-vue'],
};
使用 markdown 的 html
标签做为标识使用 preview
告诉 dumi
需要渲染这部分代码
<template>
<div id="app">my-vue-app</div>
</template>
<script>
export default {
name: 'app',
components: {},
};
</script>
<style>
#app {
text-align: center;
color: #2c3e50;
}
</style>
TODO
MIT