Files
element-plus/src/App.vue
2020-07-27 13:27:01 +08:00

18 lines
302 B
Vue

<template>
<div id="app">
<router-view />
<div id="nav">
<router-link to="/">Home</router-link> |
<router-link to="/button">Button</router-link> |
<router-link to="/tag">Tag</router-link>
</div>
</div>
</template>
<script>
export default {
name: 'App'
}
</script>