import { NButton, NSelect } from 'naive-ui' const options = [ { label: 'static', value: 'static', }, { label: 'vue3', value: 'vue3', }, { label: 'react', value: 'react', }, ] export default defineComponent({ setup() { const type = ref('static') return () => (
运行 保存
) }, })