ant-design-vue/components/segmented/demo/dynamic.vue

33 lines
618 B
Vue

<docs>
---
order: 6
title:
zh-CN: 动态数据
en-US: Dynamic
---
## zh-CN
动态加载数据
## en-US
Load dynamically.
</docs>
<template>
<a-segmented v-model:value="value" :options="data"></a-segmented>
<br />
<br />
<a-button type="primary" :disabled="isDisabled" @click="loadMore">Load More</a-button>
</template>
<script lang="ts" setup>
import { reactive, ref } from 'vue';
const data = reactive(['Daily', 'Weekly', 'Monthly']);
const isDisabled = ref(false);
const loadMore = () => {
data.push(...['Quarterly', 'Yearly']);
isDisabled.value = true;
};
const value = ref(data[0]);
</script>