Skip to content
On this page

菜单

效果

代码示例

js

<template>
	<choose-area @change="changeArea" />
</template>
<script setup lang="ts">
const changeArea = (val: any) => {
	console.log(val);
};
</script>

<style></style>

Released under the MIT License.