Skip to content

尺寸

通过 size 属性可以设置尺寸。

<template>
  <ClientOnly>
    <tiny-search-box v-model="tags" :items="dataSource" />
    size="small"
    <tiny-search-box v-model="tags" :items="dataSource" size="small" />
  </ClientOnly>
</template>

<script setup lang="ts">
import { ref } from 'vue'
import { dataSource } from './data-source'
const tags = ref([])
</script>