16 lines
273 B
Vue
16 lines
273 B
Vue
|
|
<template>
|
||
|
|
<div class="demo-space-x">
|
||
|
|
<VBtn href="https://pixinvent.com/">
|
||
|
|
String Literal
|
||
|
|
</VBtn>
|
||
|
|
|
||
|
|
<VBtn
|
||
|
|
href="https://pixinvent.com/"
|
||
|
|
target="_blank"
|
||
|
|
rel="noopener noreferrer"
|
||
|
|
>
|
||
|
|
Open New Tab
|
||
|
|
</VBtn>
|
||
|
|
</div>
|
||
|
|
</template>
|