mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 20:28:46 -05:00
WIP search page
This commit is contained in:
26
vue3/src/components/inputs/RatingField.vue
Normal file
26
vue3/src/components/inputs/RatingField.vue
Normal file
@@ -0,0 +1,26 @@
|
||||
<template>
|
||||
<v-input label="Test" hint="Test hint" persistent-hint>
|
||||
<template #prepend v-if="$slots.prepend">
|
||||
<slot name="prepend">
|
||||
</slot>
|
||||
</template>
|
||||
|
||||
<v-rating v-model="model"></v-rating>
|
||||
|
||||
<template #append v-if="$slots.append">
|
||||
<slot name="append">
|
||||
</slot>
|
||||
</template>
|
||||
</v-input>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
|
||||
const model = defineModel<boolean>({required: true})
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user