Создал файл TemplateSyntax.vue и писал примры из руководства

This commit is contained in:
Denis M
2025-12-11 16:25:36 +03:00
parent 1fcdeeaa1a
commit e1612b74bc
4 changed files with 136 additions and 12 deletions

View File

@@ -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')