<template>
div id="app">
img src="./assets/logo.png"router-view></</div>
>
script>
export default {
name: 'app
}
style
#app {
font-family: 'Avenir',Helvetica,Arial,sans-serif;
-webkit-font-smoothing antialiased
-moz-osx-font-smoothing grayscale
text-align center
color #2c3e50
margin-top 60px;
}
>
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
import router from './router'
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',router,template: '<App/>'
import Vue from 'vue'
import Router from 'vue-router'
import Hello from '@/components/Hello'
Vue.use(Router)
export default Router({
routes: [
{
path: '/'