|
Last change
on this file since fa32d0f was 92e7c7a, checked in by veronika-ils <ilioskaveronika@…>, 6 hours ago |
|
Petify fullstack project
|
-
Property mode
set to
100644
|
|
File size:
288 bytes
|
| Line | |
|---|
| 1 | import { createApp } from 'vue'
|
|---|
| 2 | import { createPinia } from 'pinia'
|
|---|
| 3 | import 'bootstrap/dist/css/bootstrap.min.css'
|
|---|
| 4 | import './styles/theme.css'
|
|---|
| 5 |
|
|---|
| 6 | import App from './App.vue'
|
|---|
| 7 | import router from './router'
|
|---|
| 8 |
|
|---|
| 9 | const app = createApp(App)
|
|---|
| 10 |
|
|---|
| 11 | app.use(createPinia())
|
|---|
| 12 | app.use(router)
|
|---|
| 13 |
|
|---|
| 14 | app.mount('#app')
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.