vue.js note

Posted kellychen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue.js note相关的知识,希望对你有一定的参考价值。

 

1. vue-cli文件执行顺序

 index.html -> main.js -> App.vue(根组件,用来融合各个子vue,子vue自带style&script)

技术分享图片

 

 

 

 

2. 子vue和app.vue的调用关系

--- 子vue通过export default来展现接口

--- app.vue 通过import来使用

技术分享图片

 

3. 父与子数据传递

父 v-bind->子 props

子 this.$emit->父 v-on $event

 技术分享图片

 

4. router-link routerv-view in app.vue & router register in main.js

技术分享图片

 

以上是关于vue.js note的主要内容,如果未能解决你的问题,请参考以下文章