Vue large screen visualization DataV component library

foreword

Recently, I need to do a Vue large-screen data visualization project. When looking for information, I found a great Vue large-screen data visualization plug-in DataV component library, which can make our large screen look more high-end.

Introduction to DataV

Website link: http://datav.jiaminghi.com

Example Demo link: http://datav.jiaminghi.com/demo

Demo screenshot:
insert image description here

DataV use

Step 1: Install

npm install @jiaminghi/data-view

Step 2: Globally register DataV in main.js

// 将自动注册所有组件为全局组件
import dataV from '@jiaminghi/data-view'
Vue.use(dataV)

Then it can be used. For specific use cases, please go to: Based on DataV optimization style scrolling table (dv-scroll-board) rotation effect

appendix

In the process of Baidu, I also found several good cases, and I will share with you
the dataV code: DataV-master
Vue large-screen data visualization case code: Vue large-screen data visualization
large-screen data display template case code: large-screen data display template

Guess you like

Origin blog.csdn.net/someday____/article/details/128098321