2025-10-09 10:42:45 +08:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { ref, onMounted, onUnmounted, reactive, toRefs } from "vue";
|
2025-10-09 13:56:00 +08:00
|
|
|
import SelectItem from "@/components/selectStyle/selectItem.vue";
|
2025-10-09 10:42:45 +08:00
|
|
|
//const props = defineProps({
|
|
|
|
|
//})
|
|
|
|
|
//const emit = defineEmits([
|
|
|
|
|
//])
|
|
|
|
|
let data = reactive({
|
2025-10-09 13:56:00 +08:00
|
|
|
|
2025-10-09 10:42:45 +08:00
|
|
|
})
|
|
|
|
|
onMounted(()=>{
|
|
|
|
|
})
|
|
|
|
|
onUnmounted(()=>{
|
|
|
|
|
})
|
|
|
|
|
defineExpose({})
|
|
|
|
|
const {} = toRefs(data);
|
|
|
|
|
</script>
|
|
|
|
|
<template>
|
|
|
|
|
<div class="selectStyle">
|
|
|
|
|
<div class="title">
|
2025-10-09 13:56:00 +08:00
|
|
|
<div class="icon">
|
|
|
|
|
<SvgIcon name="noLike" size="30" />
|
|
|
|
|
<SvgIcon name="like" size="30" />
|
|
|
|
|
<SvgIcon name="delete" color="red" size="30" />
|
|
|
|
|
<SvgIcon name="add" color="red" size="30" />
|
|
|
|
|
<SvgIcon name="update" color="red" size="30" />
|
|
|
|
|
<SvgIcon name="confirmation" color="red" size="30" />
|
|
|
|
|
</div>
|
2025-10-09 10:42:45 +08:00
|
|
|
12312
|
|
|
|
|
</div>
|
2025-10-09 13:56:00 +08:00
|
|
|
<SelectItem />
|
2025-10-09 10:42:45 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
.selectStyle{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
</style>
|