18 lines
235 B
Vue
18 lines
235 B
Vue
<template>
|
|
<div id="app">
|
|
<router-link to="/">首页</router-link>
|
|
<router-link to="/about">我的</router-link>
|
|
<router-view/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'App'
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|