Compare commits
5 Commits
V2.3.3-alp
...
V2.3.4-alp
Author | SHA1 | Date | |
---|---|---|---|
71ce19e303 | |||
0103850f87 | |||
a88685812d | |||
ae6a779561 | |||
e108afaccf |
@ -1,3 +1,9 @@
|
||||
# 2.3.4-alpha (2019-00-15)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **package.json:** Import exception caused by incorrect entry path configuration.
|
||||
|
||||
# 2.3.3-alpha (2019-07-22)
|
||||
|
||||
### Bug Fixes
|
||||
|
20
README.md
20
README.md
@ -1,4 +1,4 @@
|
||||
[中文](./README_CN.md)
|
||||
[ENGLISH](./README_EN.md)
|
||||
|
||||
<h1 align="center">DataV</h1>
|
||||
|
||||
@ -11,20 +11,20 @@
|
||||
</a>
|
||||
</p>
|
||||
|
||||
## What is DataV?
|
||||
## DataV是干什么的?
|
||||
|
||||
* DataV is a data **visualization** components library based on **Vue**.
|
||||
* Provide cool **SVG** borders and decorations.
|
||||
* Provide common **charts** such as line chart, etc..
|
||||
* flying line chart, carousel table and etc.
|
||||
* DataV是一个基于**Vue**的数据可视化组件库.
|
||||
* 提供用于提升页面视觉效果的**SVG**边框和装饰.
|
||||
* 提供常用的**图表**如折线图等.
|
||||
* 飞线图/轮播表等其他组件.
|
||||
|
||||
### Install with npm
|
||||
### npm安装
|
||||
|
||||
```shell
|
||||
$ npm install @jiaminghi/data-view
|
||||
```
|
||||
|
||||
### use
|
||||
### 使用
|
||||
|
||||
```js
|
||||
import Vue from 'vue'
|
||||
@ -32,9 +32,9 @@ import DataV from '@jiaminghi/data-view'
|
||||
|
||||
Vue.use(DataV)
|
||||
|
||||
// Introduced on demand
|
||||
// 按需引入
|
||||
import { borderBox1 } from '@jiaminghi/data-view'
|
||||
Vue.use(borderBox1)
|
||||
```
|
||||
|
||||
Detailed documents and examples can be viewed on the [HomePage](http://datav.jiaminghi.com).
|
||||
详细文档及示例请移步[HomePage](http://datav.jiaminghi.com).
|
@ -1,4 +1,4 @@
|
||||
[ENGLISH](./README.md)
|
||||
[中文](./README.md)
|
||||
|
||||
<h1 align="center">DataV</h1>
|
||||
|
||||
@ -11,20 +11,20 @@
|
||||
</a>
|
||||
</p>
|
||||
|
||||
## DataV是干什么的?
|
||||
## What is DataV?
|
||||
|
||||
* DataV是一个基于**Vue**的数据可视化组件库.
|
||||
* 提供用于提升页面视觉效果的**SVG**边框和装饰.
|
||||
* 提供常用的**图表**如折线图等.
|
||||
* 飞线图/轮播表等其他组件.
|
||||
* DataV is a data **visualization** components library based on **Vue**.
|
||||
* Provide cool **SVG** borders and decorations.
|
||||
* Provide common **charts** such as line chart, etc..
|
||||
* flying line chart, carousel table and etc.
|
||||
|
||||
### npm安装
|
||||
### Install with npm
|
||||
|
||||
```shell
|
||||
$ npm install @jiaminghi/data-view
|
||||
```
|
||||
|
||||
### 使用
|
||||
### use
|
||||
|
||||
```js
|
||||
import Vue from 'vue'
|
||||
@ -32,9 +32,9 @@ import DataV from '@jiaminghi/data-view'
|
||||
|
||||
Vue.use(DataV)
|
||||
|
||||
// 按需引入
|
||||
// Introduced on demand
|
||||
import { borderBox1 } from '@jiaminghi/data-view'
|
||||
Vue.use(borderBox1)
|
||||
```
|
||||
|
||||
详细文档及示例请移步[HomePage](http://datav.jiaminghi.com).
|
||||
Detailed documents and examples can be viewed on the [HomePage](http://datav.jiaminghi.com).
|
@ -1,9 +1,9 @@
|
||||
{
|
||||
"name": "@jiaminghi/data-view",
|
||||
"version": "2.3.3",
|
||||
"version": "2.3.4",
|
||||
"author": "JiaMing <743192023@qq.com>",
|
||||
"description": "Vue Large screen data display component library",
|
||||
"main": "/lib/index.js",
|
||||
"main": "lib/index.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/jiaming743/DataV.git"
|
||||
@ -20,7 +20,8 @@
|
||||
"keywords": [
|
||||
"vue",
|
||||
"chart",
|
||||
"dataview"
|
||||
"dataview",
|
||||
"datavisual"
|
||||
],
|
||||
"dependencies": {
|
||||
"@jiaminghi/charts": "*"
|
||||
|
Reference in New Issue
Block a user