标签:ret pre 就是 vue axios nbsp 过滤 nts return
组件概念 -- 组件就是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>
标签:ret pre 就是 vue axios nbsp 过滤 nts return
原文地址:https://www.cnblogs.com/zhangchen-sx/p/10693523.html