| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- # DataV Vue3+TS+Vite版
- [](https://github.com/vaemusic "Author") [](https://github.com/vaemusic/datav-vue3/blob/master/LICENSE "LICENSE")
- [](https://www.npmjs.com/package/@kjgl77/datav-vue3)
- 由于之前大佬写的 [DataV](http://datav.jiaminghi.com/) 不支持Vue3 Vite2.x,现部分代码用Vue3+TS重构。
- [文档地址](https://datav-vue3.netlify.app):https://datav-vue3.netlify.app
- [Gitee地址](https://gitee.com/kjgl77/datav-vue3):https://gitee.com/kjgl77/datav-vue3
- [Github地址](https://github.com/vaemusic/datav-vue3):https://github.com/vaemusic/datav-vue3
- [Demo预览地址](https://datav-vue3-demo.netlify.app/):https://datav-vue3-demo.netlify.app/
- [Demo Gitee地址](https://gitee.com/kjgl77/electronic-file):https://gitee.com/kjgl77/electronic-file
- [Demo Github地址](https://github.com/vaemusic/electronic-file):https://github.com/vaemusic/electronic-file
- ## 使用方法
- - 安装,此处使用pnpm工具,也可以yarn,npm等
- ```shell
- pnpm install @kjgl77/datav-vue3
- ```
- ### 全局引入
- ```ts
- // main.ts中全局引入
- import { createApp } from 'vue'
- import DataVVue3 from '@kjgl77/datav-vue3'
- const app = createApp(App)
- app.use(DataVVue3)
- app.mount('#app')
- ```
- 引入后在.vue文件中可以直接使用
- ```html
- <dv-decoration-1 :color="['pink','yellow']" style="width:200px;height:50px;" />
- ```
- ### 局部引入
- ```html
- <!-- 在.vue文件的script中import部分组件 -->
- <script lang="ts" setup>
- import { Decoration1, Decoration2 } from '@kjgl77/datav-vue3'
- </script>
- <template>
- <!-- 引入之后就可以在vue的template中直接使用 -->
- <decoration-1 :color="['pink','yellow']" style="width:200px;height:50px;" />
- <decoration-2 :reverse="true" style="width:5px;height:150px;" />
- </template>
- ```
- 新的组件库开发根据大佬的 [MY-Kit](https://github.com/jrainlau/MY-Kit) 开发。支持脚本生成基础文件,文档,可使用Markdown一边开发源码一边写文档。详情可见MY-Kit文档。
|