Skip to content

distpicker

省市区级联选择器。基于 el-cascader,可以使用它的全部参数及方法。

示例

html
<template>
  <cl-distpicker v-model="value" />
  <span :style="{ marginLeft: '20px' }">{{ value }}</span>
</template>

<script lang="ts" setup>
  import { ref } from "vue";

  const value = ref([]);
</script>