Files
SaaS-lib/lib/component/form/select/select-option.vue

13 lines
250 B
Vue
Raw Normal View History

2024-05-15 17:29:42 +08:00
<template>
<a-select-option><slot></slot></a-select-option>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
export default defineComponent({
name: 'NsSelectOption',
});
</script>
<style lang="less" scoped></style>