29 lines
454 B
Vue
29 lines
454 B
Vue
|
|
<template>
|
||
|
|
<div class="demo-space-x">
|
||
|
|
<VBtn to="alert">
|
||
|
|
String Literal
|
||
|
|
</VBtn>
|
||
|
|
|
||
|
|
<VBtn
|
||
|
|
color="warning"
|
||
|
|
:to="{ path: 'alert' }"
|
||
|
|
>
|
||
|
|
Object Path
|
||
|
|
</VBtn>
|
||
|
|
|
||
|
|
<VBtn
|
||
|
|
color="success"
|
||
|
|
:to="{ name: 'components-alert' }"
|
||
|
|
>
|
||
|
|
Named Router
|
||
|
|
</VBtn>
|
||
|
|
|
||
|
|
<VBtn
|
||
|
|
color="secondary"
|
||
|
|
:to="{ path: 'alert', query: { plan: 'private' } }"
|
||
|
|
>
|
||
|
|
With Query
|
||
|
|
</VBtn>
|
||
|
|
</div>
|
||
|
|
</template>
|