关于javascript:Vue-JS-2-Tutorial-二

4次阅读

共计 42 个字符,预计需要花费 1 分钟才能阅读完成。

vue 实例化

new Vue({

 el: '#app',

 render: h => h(App)

})
正文完
 0