- 安装组件
npm i -S v-region
- 引入插件
import Vue from 'vue'
import vRegion from 'v-region'
(vRegion, { global config options... })
- 代码中引用
<template>
<v-region @values="regionChange"></v-region>
</template>
<script>
export default {
methods: {
//receive selected region data
regionChange (data) {
(data)
}
}
}
</script>