本库来源自 DataV-Team/DataV,另外,大佬的 DataV-Vue3 项目也已经在开发中了,地址:https://github.com/DataV-Team/DataV-Vue3
由于之前大佬写的 DataV 不支持Vue3 Vite2.x,现部分代码用Vue3+TS重构。
- 安装,此处使用pnpm工具,也可以yarn,npm等
pnpm install @kjgl77/datav-vue3
// main.ts中全局引入
import { createApp } from 'vue'
import DataVVue3 from '@kjgl77/datav-vue3'
const app = createApp(App)
app.use(DataVVue3)
app.mount('#app')
引入后在.vue文件中可以直接使用
<dv-decoration-1 :color="['pink','yellow']" style="width:200px;height:50px;" />
<!-- 在.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>
二次开发可见文档中二次开发部分或contribute