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