1.0.1 • Published 4 years ago

avue-plugin-map v1.0.1

Weekly downloads
306
License
MIT
Repository
-
Last release
4 years ago

avue-plugin-map

avue 地图插件

Avue官网

https://avuejs.com

介绍

avue-plugin-map

npm

avue-plugin-map

git

avue-plugin-map

demo

use

1.安装
npm install avue-plugin-map --save

2.导入
import AvueMap from 'avue-plugin-map'
Vue.use(AvueMap);

3.使用
...
column:[
  ...
    {
      label:'test',
      prop:'test',
      component: "avueMap"
    }
  ...
]
或者直接
<avue-map v-model="text" ></avue-map>
...