2023-02-28 08:29:30 +00:00
|
|
|
<template>
|
|
|
|
<DocSectionText v-bind="$attrs">
|
2024-01-23 15:24:48 +00:00
|
|
|
<p>A button can be displayed as a link element when the <i>link</i> property is present. If you need to use buttons for navigation, wrap the button inside a component like <i>NuxtLink</i> or <i>router-link</i> depending on your router.</p>
|
2023-02-28 08:29:30 +00:00
|
|
|
</DocSectionText>
|
2023-11-09 15:06:13 +00:00
|
|
|
<div class="card flex justify-content-center gap-3">
|
2023-03-03 07:04:07 +00:00
|
|
|
<Button label="Link" link />
|
2024-01-23 15:24:48 +00:00
|
|
|
<NuxtLink to="https://vuejs.org/" target="_blank" rel="noopener">
|
|
|
|
<Button label="External" />
|
|
|
|
</NuxtLink>
|
|
|
|
<router-link to="/" target="_blank" rel="noopener">
|
|
|
|
<Button label="Router" />
|
|
|
|
</router-link>
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
<DocSectionCode :code="code" />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
code: {
|
2023-09-22 12:54:14 +00:00
|
|
|
basic: `
|
2023-10-15 09:38:39 +00:00
|
|
|
<Button label="Link" link />
|
2024-01-23 15:24:48 +00:00
|
|
|
<NuxtLink to="https://vuejs.org/" target="_blank" rel="noopener">
|
|
|
|
<Button label="External" />
|
|
|
|
</NuxtLink>
|
|
|
|
<router-link to="/" target="_blank" rel="noopener">
|
|
|
|
<Button label="Router" />
|
|
|
|
</router-link>
|
2023-10-15 09:38:39 +00:00
|
|
|
`,
|
2023-09-22 12:54:14 +00:00
|
|
|
options: `
|
|
|
|
<template>
|
2023-11-09 15:06:13 +00:00
|
|
|
<div class="card flex justify-content-center gap-3">
|
2023-03-03 07:04:07 +00:00
|
|
|
<Button label="Link" link />
|
2024-01-23 15:24:48 +00:00
|
|
|
<NuxtLink to="https://vuejs.org/" target="_blank" rel="noopener">
|
|
|
|
<Button label="External" />
|
|
|
|
</NuxtLink>
|
|
|
|
<router-link to="/" target="_blank" rel="noopener">
|
|
|
|
<Button label="Router" />
|
|
|
|
</router-link>
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-10-15 09:38:39 +00:00
|
|
|
<\/script>
|
|
|
|
`,
|
2023-09-22 12:54:14 +00:00
|
|
|
composition: `
|
|
|
|
<template>
|
2023-11-09 15:06:13 +00:00
|
|
|
<div class="card flex justify-content-center gap-3">
|
2023-03-03 07:04:07 +00:00
|
|
|
<Button label="Link" link />
|
2024-01-23 15:24:48 +00:00
|
|
|
<NuxtLink to="https://vuejs.org/" target="_blank" rel="noopener">
|
|
|
|
<Button label="External" />
|
|
|
|
</NuxtLink>
|
|
|
|
<router-link to="/" target="_blank" rel="noopener">
|
|
|
|
<Button label="Router" />
|
|
|
|
</router-link>
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
2023-10-15 09:38:39 +00:00
|
|
|
<\/script>
|
|
|
|
`
|
2023-02-28 08:29:30 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|