feat: Added href prop to button component

This commit is contained in:
Ilya Artamonov
2023-09-19 20:02:53 +03:00
parent e749fd726c
commit 0a792fc0d5
4 changed files with 67 additions and 53 deletions

View File

@@ -0,0 +1,8 @@
<template>
<div class="vp-raw inline-flex align-center gap-2 flex-wrap">
<Button color="default" href="https://google.com" target="_blank">Default</Button>
</div>
</template>
<script setup>
import { Button } from '../../../../src/index'
</script>