mirror of
https://github.com/BlossomiShymae/clean-cuts.git
synced 2025-12-06 10:10:47 +01:00
10 lines
285 B
Vue
10 lines
285 B
Vue
<script setup lang="ts">
|
|
const model = defineModel();
|
|
</script>
|
|
|
|
<template>
|
|
<div class="input-group" style="max-width: 400px;">
|
|
<input type="text" class="form-control border-light border-opacity-25"
|
|
placeholder="Search" name="Search" v-model="model" />
|
|
</div>
|
|
</template> |