mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-04 05:39:00 -05:00
16 lines
244 B
Vue
16 lines
244 B
Vue
<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> |