Создал файл TemplateSyntax.vue и писал примры из руководства
This commit is contained in:
11
src/main.js
11
src/main.js
@@ -2,4 +2,13 @@ import { createApp } from 'vue'
|
||||
import App from './App.vue'
|
||||
import './index.css'
|
||||
|
||||
createApp(App).mount('#app')
|
||||
const app = createApp(App)
|
||||
|
||||
app.config.errorHandler = (err) => {
|
||||
alert(err)
|
||||
}
|
||||
|
||||
// Регистрация компонентов
|
||||
// app.component('table',vuetable)
|
||||
|
||||
app.mount('#app')
|
||||
|
||||
Reference in New Issue
Block a user