primevue-mirror/doc/button/LinkDoc.vue

48 lines
1.4 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
2023-11-09 15:06:13 +00:00
<p>A button can be rendered as a link when the <i>link</i> property is present. On the other hand, adding <i>.p-button</i> class to an anchor element displays the link as a button.</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 />
2023-11-09 15:06:13 +00:00
<a href="https://vuejs.org" target="_blank" rel="noopener noreferrer" class="p-button font-bold">Navigate</a>
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 />
2023-11-09 15:06:13 +00:00
<a href="https://vuejs.org" target="_blank" rel="noopener noreferrer" class="p-button font-bold">Navigate</a>
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 />
2023-11-09 15:06:13 +00:00
<a href="https://vuejs.org" target="_blank" rel="noopener noreferrer" class="p-button font-bold">Navigate</a>
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 />
2023-11-09 15:06:13 +00:00
<a href="https://vuejs.org" target="_blank" rel="noopener noreferrer" class="p-button font-bold">Navigate</a>
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>