Files
Aida_Purchaser_Front/src/views/collectionStory/index.vue

29 lines
503 B
Vue
Raw Normal View History

2026-04-20 14:06:02 +08:00
<script setup lang="ts">
2026-04-20 14:14:31 +08:00
import { ref, onMounted, onUnmounted, reactive, toRefs } from "vue";
//const props = defineProps({
//})
//const emit = defineEmits([
//])
let data = reactive({
})
onMounted(()=>{
})
onUnmounted(()=>{
})
defineExpose({})
const {} = toRefs(data);
2026-04-20 14:06:02 +08:00
</script>
2026-04-20 14:14:31 +08:00
<template>
<div class="collectionStory">
<div class="title">
collection Story
</div>
</div>
</template>
<style lang="less" scoped>
.collectionStory{
width: 100%;
height: 100%;
position: relative;
2026-04-20 14:06:02 +08:00
}
2026-04-20 14:14:31 +08:00
</style>