mirror of
https://github.com/continew-org/continew-admin-ui.git
synced 2025-11-08 08:57:12 +08:00
17 lines
233 B
Vue
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>
|