-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
alexmenshikov
committed
Jul 15, 2024
1 parent
9ae1c05
commit db6d440
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,26 @@ | ||
import { defineComponent, createApp } from 'vue/dist/vue.esm-bundler.js' | ||
|
||
const App = defineComponent({ | ||
// Имя компонента - не обязательная опция, но принято иметь - полезно для отладки и редких случаев | ||
name: 'App', | ||
|
||
// Setup собирает и настраивает экземпляр компонента: определяет его свойства и логику работы | ||
setup() { | ||
// Свойства возвращаемого объекта будут свойствами экземпляра компонента | ||
return { | ||
} | ||
}, | ||
|
||
template: ` | ||
<div>Сегодня ${ new Date().toLocaleDateString(undefined, { dateStyle: 'long' }) }</div> | ||
`, | ||
}) | ||
|
||
// Создаём Vue приложение - абстракцию для конфигурации | ||
const app = createApp(App) | ||
// Через приложение можно устанавливать плагины, глобальную конфигурацию и др. | ||
// app.use(plugin) | ||
|
||
// После монтирования приложения на страницу, Vue отвечает за рендеринг этой части страницы. | ||
// Метод возвращает экземпляр корневого компонента | ||
const vm = app.mount('#app') |