mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 12:18:45 -05:00
first vue 3 commit
This commit is contained in:
11
vue3/src/apps/tandoor/Tandoor.vue
Normal file
11
vue3/src/apps/tandoor/Tandoor.vue
Normal file
@@ -0,0 +1,11 @@
|
||||
<script setup lang="ts">
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
Test Template content
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
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')
|
||||
1
vue3/src/openapi/update.bat
Normal file
1
vue3/src/openapi/update.bat
Normal file
@@ -0,0 +1 @@
|
||||
openapi-generator-cli generate -g typescript-fetch -i http://127.0.0.1:8000/openapi/
|
||||
Reference in New Issue
Block a user