粗暴唇彩

文章
7
资源
0
加入时间
4年2月8天

Vue学习笔记-组件

1、基础组件     注册组件:使用component()方法,该方法里面需传人两个参数:name【下面引用组件用】,obj【设置组件内容,data属性和template属性,data存放组件中参数,template值是一个html格式的字符串】// 定义一个新的组件,名称为 button-counterVue.component('button-counter', {data: functi...