-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
10 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,9 @@ | ||
<template> | ||
<ShadcnTab> | ||
<ShadcnTabItem label="Tab 1" value="Tab 1"> | ||
<p>Tab 1 content</p> | ||
</ShadcnTabItem> | ||
<ShadcnTabItem label="Tab 2" value="Tab 2"> | ||
<p>Tab 2 content</p> | ||
</ShadcnTabItem> | ||
<ShadcnTabItem value="Tab 3" @on-click="console.log('Tab 3 clicked')"> | ||
<template #label> | ||
<div class="flex items-center space-x-1"> | ||
<ShadcnIcon icon="Save"/> | ||
<span>Label Slot</span> | ||
</div> | ||
</template> | ||
<p>Tab 3 content</p> | ||
</ShadcnTabItem> | ||
</ShadcnTab> | ||
<ShadcnInput v-model="input" placeholder="Input" type="textarea"/> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { ref } from 'vue' | ||
const input = ref('Hello View Shadcn UI') | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters