21 lines
277 B
Vue
21 lines
277 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: 100px;
|
|
}
|
|
|
|
ul {
|
|
padding-left: 0;
|
|
}
|
|
</style>
|