mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-07 07:08:03 -05:00
first vue 3 commit
This commit is contained in:
12
vue3/src/apps/tandoor/main.ts
Normal file
12
vue3/src/apps/tandoor/main.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import {createApp} from "vue";
|
||||
import { createPinia } from 'pinia'
|
||||
// @ts-ignore
|
||||
import App from './Tandoor.vue'
|
||||
|
||||
|
||||
|
||||
const app = createApp(App)
|
||||
|
||||
app.use(createPinia())
|
||||
|
||||
app.mount('#app')
|
||||
Reference in New Issue
Block a user