You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
278 B
10 lines
278 B
2 years ago
|
// 引入的不再是Vue构造函数, 引入的是一个名为createApp的工厂函数
|
||
|
import { createApp } from 'vue'
|
||
|
import App from './App.vue'
|
||
|
|
||
|
// createApp(App).mount('#app')
|
||
|
|
||
|
// 创建应用实例对象
|
||
|
const app = createApp(App)
|
||
|
console.log('@@@',app)
|
||
|
app.mount('#app')
|