Files
SaaS-lib/lib/component/form/select/select-option.vue
xuziqiang d0155dbe3c push
2024-05-15 17:29:42 +08:00

13 lines
250 B
Vue

<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>