zhangxiao
2024-08-26 57b66478e7e335379435b31c20da4619bd1411f5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<template>
    <div>
        <p>{{ title }}</p>
        <a-select :placeholder="placeholder">
            <a-option v-for="(item, key) in data" :key="key">{{ item }}</a-option>
        </a-select>
    </div>
</template>
<script lang="ts" setup name="TheACascader">
const props = withDefaults(
    defineProps<{
        placeholder?: string;
        title?: string;
        data?: Array<any>;
    }>(),
    {
        data: () => [],
        placeholder: "",
        title: ""
    }
);
</script>
<style lang="scss" scoped>
div {
    display: flex;
    align-items: center;
    > p {
        margin-right: 10px;
    }
}
</style>