Vue component
Add a production summary workspace
Users can choose type, length, format and context without extra settings UI.<script setup lang="ts">
import { ref } from "vue";
import { Summarizer } from "@desource/browser-ai-vue";
import "@desource/browser-ai-vue/assets/lib.css";
const article = ref("Paste the article here...");
</script>
<template>
<Summarizer v-model="article" type="key-points" format="markdown" />
</template>