hgh_admin/resources/js/views/demos/components/button/DemoButtonLink.vue
2024-05-29 22:34:28 +05:00

16 lines
283 B
Vue

<template>
<div class="demo-space-x">
<VBtn href="https://themeselection.com/">
String Literal
</VBtn>
<VBtn
href="https://themeselection.com/"
target="_blank"
rel="noopener noreferrer"
>
Open New Tab
</VBtn>
</div>
</template>