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.
17 lines
419 B
17 lines
419 B
<template>
|
|
<div class="content">{{ content }}</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { useRouter } from 'vue-router';
|
|
console.log(useRouter().currentRoute.value.meta);
|
|
|
|
const content = useRouter().currentRoute.value.meta.title + 'developing';
|
|
</script>
|
|
<style scoped lang="less">
|
|
.content {
|
|
font-size: 30px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
</style>
|
|
|