mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
18 lines
302 B
Vue
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>
|