mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-03 05:11:31 -05:00
more basics
This commit is contained in:
16
vue3/src/pages/RecipeSearchPage.vue
Normal file
16
vue3/src/pages/RecipeSearchPage.vue
Normal 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>
|
||||
15
vue3/src/pages/ShoppingListPage.vue
Normal file
15
vue3/src/pages/ShoppingListPage.vue
Normal 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>
|
||||
Reference in New Issue
Block a user