摘要:
(function(){ return ..... })() 举例: js中自调用(自执行)函数的两种常用写法(可能还有其他写法): 1、(function(形参列表){ return ..... })(实参列表); 2、(function(形参列表){ return ..... }(实参列表)); 阅读全文
posted @ 2019-09-25 20:44
JAVA_STUDYER
阅读(10996)
评论(0)
推荐(0)
摘要:
Vue.component( 'button-counter', { template: '<button v-on:click="count++">You clicked me {{ count }} times.</button>' , data: function () { return { 阅读全文
posted @ 2019-09-25 17:54
JAVA_STUDYER
阅读(2805)
评论(0)
推荐(0)