more basics

This commit is contained in:
vabene1111
2024-02-21 18:09:51 +01:00
parent 4972418dc5
commit 1e6e843e05
120 changed files with 23511 additions and 47 deletions

View File

@@ -0,0 +1,16 @@
<template>
<h2>Search</h2>
<v-input placeholde="Search"></v-input>
</template>
<script lang="ts">
import {defineComponent} from 'vue'
export default defineComponent({
name: "RecipeSearchPage"
})
</script>
<style scoped>
</style>

View File

@@ -0,0 +1,15 @@
<template>
<h2>Shopping List</h2>
</template>
<script lang="ts">
import {defineComponent} from 'vue'
export default defineComponent({
name: "ShoppingListPage"
})
</script>
<style scoped>
</style>