33 lines
538 B
Vue
33 lines
538 B
Vue
<template>
|
|
<div class="go-setting-item" :style="{ width: width + 'px' }">
|
|
<slot ></slot>
|
|
<n-text class="name" depth="3">{{ name }}</n-text>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps({
|
|
name: {
|
|
type: String,
|
|
required: false
|
|
},
|
|
width: {
|
|
type: Number,
|
|
required: false
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@include go(setting-item) {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-width: 110px;
|
|
text-align: start;
|
|
margin-bottom: 5px;
|
|
.name {
|
|
margin-top: 2px;
|
|
}
|
|
}
|
|
</style>
|