vue
Posted zhangchen-sx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue相关的知识,希望对你有一定的参考价值。
组件概念 -- 组件就是html+css+js的整和。把网页划分成组件之 后,网页的结构就成了组件化的开发
局部组件总结 声子,挂子,用子
let App 声明
new Vue({
el:‘#app‘,
data(){return{}},
methods:{},
components: {‘App‘:App} 挂载
template:`<App/>` 用子组件
})
全局组件
let Vheader = Vue.component(‘Vheader‘,{
data(){
return{}
},methods:{},
components:{},
template:`<div class=‘header‘>我是头部</div>`
})
过滤器 说白了,就是添油加醋
全局
局部
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
以上是关于vue的主要内容,如果未能解决你的问题,请参考以下文章