You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
459 B
30 lines
459 B
<template>
|
|
<div class="about">
|
|
<h2>关于我们</h2>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup name="About">
|
|
import { onMounted,onUnmounted } from 'vue'
|
|
|
|
onMounted(()=>{
|
|
console.log('about mounted')
|
|
})
|
|
|
|
onUnmounted(()=>{
|
|
console.log('about unmounted')
|
|
})
|
|
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
.about{
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
color:rgb(85,84,84);
|
|
font-size: 18px;
|
|
}
|
|
</style>
|