Skip to content

Commit

Permalink
feat: support github link
Browse files Browse the repository at this point in the history
  • Loading branch information
haoziqaq committed Jun 28, 2024
1 parent 1156eab commit ad62f00
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,17 @@ function handleClick(value: string, { name, icon }: { name: string; icon: string
<div class="flex flex-col justify-center h-66px">
<div class="flex items-center gap-20px">
<var-input class="w-300px" size="small" variant="outlined" placeholder="Search..." clearable v-model="search" />
<var-button icon-container round @click="toggleDark">
<var-icon name="palette" />
</var-button>

<div class="flex gap-14px">
<var-button icon-container round @click="toggleDark">
<var-icon name="palette" />
</var-button>
<var-link target="_blank" underline="none" href="https://github.com/varletjs/varlet-icons-library-starter">
<var-button icon-container round>
<var-icon name="github" />
</var-button>
</var-link>
</div>
</div>
</div>
</var-app-bar>
Expand Down

0 comments on commit ad62f00

Please sign in to comment.