Files
continew-admin-ui/src/components/GiOption/index.vue
2024-04-08 21:34:02 +08:00

17 lines
233 B
Vue

<template>
<ul class="gi-option">
<slot></slot>
</ul>
</template>
<script setup lang="ts">
defineOptions({ name: 'GiOption' })
</script>
<style lang="scss" scoped>
.gi-option {
width: 100%;
min-width: 120px;
}
</style>