This commit is contained in:
X1627315083@163.com
2026-04-20 14:14:31 +08:00
parent 69647d5665
commit 9b0c777164
2 changed files with 35 additions and 35 deletions

View File

@@ -1,12 +1,29 @@
<template>
<div class="home-index">home</div>
</template>
<script setup lang="ts">
import { computed } from 'vue'
import { ref, onMounted, onUnmounted, reactive, toRefs } from "vue";
//const props = defineProps({
//})
//const emit = defineEmits([
//])
let data = reactive({
})
onMounted(()=>{
})
onUnmounted(()=>{
})
defineExpose({})
const {} = toRefs(data);
</script>
<style lang="less">
.home-index {
<template>
<div class="collectionStory">
<div class="title">
collection Story
</div>
</div>
</template>
<style lang="less" scoped>
.collectionStory{
width: 100%;
height: 100%;
position: relative;
}
</style>
</style>

View File

@@ -1,29 +1,12 @@
<script setup lang="ts">
import { ref, onMounted, onUnmounted, reactive, toRefs } from "vue";
//const props = defineProps({
//})
//const emit = defineEmits([
//])
let data = reactive({
})
onMounted(()=>{
})
onUnmounted(()=>{
})
defineExpose({})
const {} = toRefs(data);
</script>
<template>
<div class="collectionStory">
<div class="title">
collection Story
</div>
</div>
<div class="home-index">home</div>
</template>
<style lang="less" scoped>
.collectionStory{
width: 100%;
height: 100%;
position: relative;
<script setup lang="ts">
import { computed } from 'vue'
</script>
<style lang="less">
.home-index {
}
</style>
</style>