primevue-mirror/doc/button/LinkDoc.vue

41 lines
806 B
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
2023-03-03 07:04:07 +00:00
<p>A button can be rendered as a link as well.</p>
2023-02-28 08:29:30 +00:00
</DocSectionText>
<div class="card flex justify-content-center">
2023-03-03 07:04:07 +00:00
<Button label="Link" link />
2023-02-28 08:29:30 +00:00
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
2023-03-03 07:04:07 +00:00
<Button label="Link" link />`,
2023-02-28 08:29:30 +00:00
options: `
<template>
<div class="card flex justify-content-center">
2023-03-03 07:04:07 +00:00
<Button label="Link" link />
2023-02-28 08:29:30 +00:00
</div>
</template>
<script>
<\/script>`,
composition: `
<template>
<div class="card flex justify-content-center">
2023-03-03 07:04:07 +00:00
<Button label="Link" link />
2023-02-28 08:29:30 +00:00
</div>
</template>
<script setup>
<\/script>`
}
};
}
};
</script>