mirror of
https://github.com/xxxsf/vue3-h5-template.git
synced 2025-04-05 12:22:46 +08:00
21 lines
321 B
Vue
21 lines
321 B
Vue
<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> |