<script setup lang="ts">
import { ref } from "vue";
const value = ref("daily");
const options = [
{ label: "日报", value: "daily" },
{ label: "周报", value: "weekly" },
{ label: "月报", value: "monthly" },
];
</script>
<template>
<Segmented v-model="value" :options="options" />
</template>