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">
import { ref } from 'vue'
interface Props {
modelValue: string
icon?: string
......@@ -6,13 +8,15 @@ interface Props {
}
defineProps<Props>()
const input = ref()
</script>
<template>
<div
:class="{ 'has-icon': !!icon }"
class="funkwhale input"
@click="$refs.input.focus()"
@click="input.focus()"
>
<div v-if="icon" class="prefix">
<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