This component no longer exists. It was in Originui Vue’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-06 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
extended-35
originui-vue/extended-35RemovedComponent
Originui Vue publishes no description for this item.
Install it
npx shadcn@latest add https://originui-vue.com/r/extended-35.jsonSource
1<script setup lang="ts">2import {3 Snippet,4 SnippetCopyButton,5 SnippetHeader,6 SnippetTabsContent,7 SnippetTabsList,8 SnippetTabsTrigger,9} from "@/registry/default/ui/snippet";10import { computed, ref } from "vue";1112const commands = [13 {14 label: "npm",15 code: "npx next-forge@latest init",16 },17 {18 label: "yarn",19 code: "yarn dlx next-forge@latest init",20 },21 {22 label: "pnpm",23 code: "pnpx next-forge@latest init",24 },25 {26 label: "bun",27 code: "bunx next-forge@latest init",28 },29] as const;3031const activeTab = ref(commands[0]?.label);3233const activeCommand = computed(() => commands.find((command) => command.label === activeTab.value));34</script>3536<template>37 <div class="*:not-first:mt-2">38 <Snippet v-model="activeTab">39 <SnippetHeader>40 <SnippetTabsList>41 <SnippetTabsTrigger42 v-for="command in commands"43 :key="command.label"44 :value="command.label"45 >46 {{ command.label }}47 </SnippetTabsTrigger>48 </SnippetTabsList>49 <SnippetCopyButton :value="activeCommand?.code || ''" />50 </SnippetHeader>51 <SnippetTabsContent v-for="command in commands" :key="command.label" :value="command.label">52 <pre class="truncate p-4">{{ command.code }}</pre>53 </SnippetTabsContent>54 </Snippet>55 <p class="text-muted-foreground mt-2 text-xs" role="region" aria-live="polite">56 Based on Kibo Snippet component57 <a58 class="hover:text-foreground underline"59 href="https://www.kibo-ui.com/components/snippet"60 target="_blank"61 rel="noopener nofollow"62 >63 Kibo UI64 </a>65 </p>66 </div>67</template>
