0.2.0 • Published 9 months ago

lsq_datav v0.2.0

Weekly downloads
-
License
-
Repository
-
Last release
9 months ago

前言

DataV 是一个组件库,主要用于构建大屏数据展示页面即数据可视化,具有多种类型组件使用。

目前作者写的还是 vue2 版本,并没有 vue3 + Ts 的版本。在此基础上,针对于项目中使用的组件使用 vue3+TS 进行重构,并发布包。

DataV

DataV 文档

目前只实现了装饰模块,和边框 12,13。

使用方法

安装

npm i lsq_datav

全局引入

// main.ts
import { createApp } from "vue";
import App from "./App.vue";
import LsqDatav from "lsq_datav";
const app = createApp(App);
app.use(LsqDatav).mount("#app");

在组件中使用的方法与 DataV 组件大体一致,只是组件名称不一致。

例如:

<dv-decoration-1 style="width:200px;height:50px;" />
<!-- 等价于 -->
<lc-decoration-1 style="width: 200px; height: 50px"></lc-decoration-1>

按需引入

<template>
  <lc-decoration-1 style="width: 200px; height: 50px"></lc-decoration-1>
</template>
<script setup lang="ts">
import { LcDecoration1 } from "lsq_datav";
</script>
0.2.0

9 months ago

0.1.9

9 months ago

0.1.8

9 months ago

0.1.7

9 months ago

0.1.6

9 months ago

0.1.5

9 months ago

0.1.4

9 months ago

0.1.2

9 months ago

0.1.1

10 months ago

0.1.0

10 months ago

0.0.9

10 months ago

0.0.8

10 months ago

0.0.7

10 months ago

0.0.6

10 months ago

0.0.5

10 months ago

0.0.4

10 months ago

0.0.3

10 months ago

0.0.2

10 months ago

0.0.1

10 months ago