primevue-mirror/doc/button/RaisedTextDoc.vue

69 lines
2.5 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>Text buttons can be displayed as raised as well for elevation.</p>
</DocSectionText>
<div class="card flex justify-content-center flex-wrap gap-3">
2023-03-03 07:04:07 +00:00
<Button label="Primary" text raised />
<Button label="Secondary" severity="secondary" text raised />
<Button label="Success" severity="success" text raised />
<Button label="Info" severity="info" text raised />
<Button label="Warning" severity="warning" text raised />
<Button label="Help" severity="help" text raised />
<Button label="Danger" severity="danger" text raised />
2023-03-06 08:15:11 +00:00
<Button label="Plain" plain text raised />
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="Primary" text raised />
<Button label="Secondary" severity="secondary" text raised />
<Button label="Success" severity="success" text raised />
<Button label="Info" severity="info" text raised />
<Button label="Warning" severity="warning" text raised />
<Button label="Help" severity="help" text raised />
2023-03-06 08:15:11 +00:00
<Button label="Danger" severity="danger" text raised />
<Button label="Plain" plain text raised />`,
2023-02-28 08:29:30 +00:00
options: `
<template>
<div class="card flex justify-content-center flex-wrap gap-3">
2023-03-03 07:04:07 +00:00
<Button label="Primary" text raised />
<Button label="Secondary" severity="secondary" text raised />
<Button label="Success" severity="success" text raised />
<Button label="Info" severity="info" text raised />
<Button label="Warning" severity="warning" text raised />
<Button label="Help" severity="help" text raised />
<Button label="Danger" severity="danger" text raised />
2023-03-06 08:15:11 +00:00
<Button label="Plain" plain text raised />
2023-02-28 08:29:30 +00:00
</div>
</template>
<script>
<\/script>`,
composition: `
<template>
<div class="card flex justify-content-center flex-wrap gap-3">
2023-03-03 07:04:07 +00:00
<Button label="Primary" text raised />
<Button label="Secondary" severity="secondary" text raised />
<Button label="Success" severity="success" text raised />
<Button label="Info" severity="info" text raised />
<Button label="Warning" severity="warning" text raised />
<Button label="Help" severity="help" text raised />
<Button label="Danger" severity="danger" text raised />
2023-03-06 08:15:11 +00:00
<Button label="Plain" plain text raised />
2023-02-28 08:29:30 +00:00
</div>
</template>
<script setup>
<\/script>`
}
};
}
};
</script>