Commit 59a79421 authored by 黄奎's avatar 黄奎
parents 30442cc9 0fd512d3
Pipeline #59 canceled with stages
...@@ -11,12 +11,5 @@ export default { ...@@ -11,12 +11,5 @@ export default {
</script> </script>
<style> <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;
}
</style> </style>
<template>
<div class="homeIndex">
<div class="head">
</div>
</div>
</template>
<script>
export default {
name: 'homeIndex'
}
</script>
<style>
.homeIndex .head{
}
</style>
...@@ -10,6 +10,11 @@ export default new Router({ ...@@ -10,6 +10,11 @@ export default new Router({
path: '/', path: '/',
name: 'HelloWorld', name: 'HelloWorld',
component: HelloWorld component: HelloWorld
},
{
path: '/homeIndex',
name: 'homeIndex',
component: resolve => require(['@/components/homeIndex'], resolve),
} }
] ]
}) })
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment