forked from clay/er-top
26 lines
387 B
Vue
26 lines
387 B
Vue
<template>
|
|
<!-- <div id="nav">-->
|
|
<!-- <router-link to="/">Home</router-link> |-->
|
|
<!-- <router-link to="/about">About</router-link>-->
|
|
<!-- </div>-->
|
|
<!-- <router-view/>-->
|
|
|
|
|
|
<Index/>
|
|
<div id="container"/>
|
|
|
|
|
|
</template>
|
|
<script>
|
|
import Index from './views/Index'
|
|
export default {
|
|
name: 'App',
|
|
components: {
|
|
Index
|
|
},
|
|
}
|
|
</script>
|
|
<style scoped>
|
|
|
|
</style>
|