File tree 1 file changed +5
-12
lines changed
1 file changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -70,12 +70,9 @@ Vue.component(Button.name, Button);
70
70
71
71
Vue .config .productionTip = false ;
72
72
73
- /* eslint-disable no-new */
74
73
new Vue ({
75
- el: " #app" ,
76
- components: { App },
77
- template: " <App/>"
78
- });
74
+ render : h => h (App)
75
+ }).$mount (" #app" );
79
76
```
80
77
81
78
修改 ` src/App.vue ` 的 template 内容。
@@ -85,7 +82,6 @@ new Vue({
85
82
< div id= " app" >
86
83
< img src= " ./assets/logo.png" >
87
84
< a- button type= " primary" > Button>< / a- button>
88
- < router- view/ >
89
85
< / div>
90
86
< / template>
91
87
...
@@ -161,15 +157,12 @@ $ yarn add babel-plugin-import --dev
161
157
162
158
Vue.config.productionTip = false
163
159
164
- /* eslint-disable no-new */
165
160
new Vue({
166
- el: '#app',
167
- components: { App },
168
- template: '<App/>'
169
- })
161
+ render: h => h(App)
162
+ }).$mount("#app");
170
163
```
171
164
172
- 最后重启 ` npm run dev ` 访问页面,antd 组件的 js 和 css 代码都会按需加载,你在控制台也不会看到这样的[ 警告信息] ( https://zos.alipayobjects.com/rmsportal/vgcHJRVZFmPjAawwVoXK.png ) 。关于按需加载的原理和其他方式可以阅读[ 这里] ( /docs/vue/getting-started-cn/#按需加载 ) 。
165
+ 最后重启 ` npm run serve ` 访问页面,antd 组件的 js 和 css 代码都会按需加载,你在控制台也不会看到这样的[ 警告信息] ( https://zos.alipayobjects.com/rmsportal/vgcHJRVZFmPjAawwVoXK.png ) 。关于按需加载的原理和其他方式可以阅读[ 这里] ( /docs/vue/getting-started-cn/#按需加载 ) 。
173
166
174
167
### 自定义主题
175
168
You can’t perform that action at this time.
0 commit comments