For AI agents: the complete documentation index is available at https://docs.halo.run/llms.txt, the full documentation bundle is available at https://docs.halo.run/llms-full.txt, and this page is available as Markdown at https://docs.halo.run/developer-guide/plugin/api-reference/ui/components/filter-clean-button.md.

FilterCleanButton

使用示例

<script lang="ts" setup>
function onClear() {
  console.log("clear");
}
</script>

<template>
  <FilterCleanButton @click="onClear" />
</template>