1.0.0 • Published 4 years ago

ewkj-avue-plugin-map v1.0.0

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

avue-plugin-map

avue 地图插件

Avue官网

https://avue.top

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>
...