摘要:
函数的完整写法 //1.函数声明写法 //小括号后面的:number代表的是返回值 function add(x:number,y:number) :number{ return x+y } const result = add(1,2) console.log(result); //2.函数表达式 阅读全文
摘要:
function MyClass(){ } MyClass.prototype.a =3 var mc = new MyClass() var mc2 = new MyClass() var mc3 = new MyClass() mc.a='我是mc2的a' console.log(mc.a); 阅读全文
摘要:
vue 自定义attribute继承 1.子组件 <template> <div class="dataPicker"> <input type="date" v-bind="$attrs" /> </div> </template> <script> export default { inheri 阅读全文
摘要:
vue中父组件如何修改子组件里面的数据以及执行子组件里面的方法? 阅读全文
摘要:
vue中父组件主动获取子组件里面的数据和执行子组件里面的方法 阅读全文
摘要:
vue通过事件对象获取标签上的属性值的两种方式 <template> <div><button data-id='qwe' @click="btnClick">按钮</button></div> </template> <script> export default { data(){ return 阅读全文
摘要:
vue通过事件获取自定义属性 阅读全文
摘要:
vue绑定内联样式的几种写法 阅读全文