码迷,mamicode.com
首页 > Web开发 > 详细

Vue.js组件之间的调用

时间:2018-08-10 19:36:40      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:router   dex   enter   nbsp   src   rod   之间   ext   port   

index.html:

<div id="app"></div>

运行完index.html之后自动寻找运行main.js文件

main.js:

import Vue from ‘vue‘
import App from ‘./App‘
import router from ‘./router‘

Vue.config.productionTip = false

new Vue({
  el: ‘#app‘,
  router,
  template: ‘<App/>‘, 
  components: { App }
})

然后进入app.vue

app.vue:

<template>
  <div id="app">
    <top></top>
    <router-view></router-view>
    <footerbottom>
    </footerbottom>
  </div>
</template>

<script>
import Top from ‘./top‘ 
import Footerbottom from ‘./footerbottom‘
export default {
  name: ‘app‘,
  components: {
    Top,
    Footerbottom
  }
}
</script>

根据标签的结构走,<top></top>放top.vue的内容

top.vue:

<template>

 

<h2>

top

</h2>

</template>
<script>
export default({
  name: ‘top‘
})
</script>

<footerbottom></footerbottom>放footerbottom.vue的内容

footerbottom.vue:

 

<template>

<h2>

bottom

</h2>

</template>
<script>
export default({
  name: ‘footerbottom‘
})
</script>

<router-view></router-view>默认指向router文件夹下的index.js文件,

index.js:

import Vue from ‘vue‘
import Router from ‘vue-router‘
import Hello from ‘@/components/hello‘

Vue.use(Router)

export default new Router({
  routes: [
    { path: ‘/‘, component: Hello }
  ]
})

路由指向/components/hello.vue文件

hello.vue:

<template>

 

<p>

Hello world!

</p>

</template>
<script>
export default {
  name: ‘hello‘
}
</script>

最后运行出来的效果如图:

技术分享图片

 

 

转自:http://blog.csdn.net/web_xiaolei/article/details/68943074

 

Vue.js组件之间的调用

标签:router   dex   enter   nbsp   src   rod   之间   ext   port   

原文地址:https://www.cnblogs.com/jingcaijueyan/p/9456596.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!