Skip to content
Snippets Groups Projects
Commit 5e5e0571 authored by Kasper Seweryn's avatar Kasper Seweryn 🥞
Browse files

Fix build error

parent ae9853f4
No related branches found
No related tags found
1 merge request!1Implement all components
Pipeline #23736 passed with stages
in 7 minutes and 41 seconds
<script setup lang="ts"> <script setup lang="ts">
import { ref } from 'vue'
interface Props { interface Props {
modelValue: string modelValue: string
icon?: string icon?: string
...@@ -6,13 +8,15 @@ interface Props { ...@@ -6,13 +8,15 @@ interface Props {
} }
defineProps<Props>() defineProps<Props>()
const input = ref()
</script> </script>
<template> <template>
<div <div
:class="{ 'has-icon': !!icon }" :class="{ 'has-icon': !!icon }"
class="funkwhale input" class="funkwhale input"
@click="$refs.input.focus()" @click="input.focus()"
> >
<div v-if="icon" class="prefix"> <div v-if="icon" class="prefix">
<i :class="['bi', icon]" /> <i :class="['bi', icon]" />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment