xushunfa459 5ca47e03e7 update
2022-01-21 11:58:16 +08:00

21 lines
321 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<router-link to="/">Page1</router-link>
<router-link to="/page2">Page2</router-link>
<router-view />
</template>
<script setup>
import { onBeforeMount } from 'vue'
onBeforeMount(() => {
//set tmp token when setting isNeedLogin false
})
</script>
<style>
a {
color: #42b983;
}
</style>