primevue-mirror/apps/showcase/doc/button/SeverityDoc.vue

72 lines
2.2 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>The <i>severity</i> property defines the variant of a button.</p>
2023-02-28 08:29:30 +00:00
</DocSectionText>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center flex-wrap gap-4">
2023-02-28 08:29:30 +00:00
<Button label="Primary" />
2023-03-03 07:04:07 +00:00
<Button label="Secondary" severity="secondary" />
<Button label="Success" severity="success" />
<Button label="Info" severity="info" />
2024-05-08 11:35:11 +00:00
<Button label="Warn" severity="warn" />
2023-03-03 07:04:07 +00:00
<Button label="Help" severity="help" />
<Button label="Danger" severity="danger" />
2024-01-18 09:56:05 +00:00
<Button label="Contrast" severity="contrast" />
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: `
<Button label="Primary" />
2023-03-03 07:04:07 +00:00
<Button label="Secondary" severity="secondary" />
<Button label="Success" severity="success" />
<Button label="Info" severity="info" />
2024-05-08 11:35:11 +00:00
<Button label="Warn" severity="warn" />
2023-03-03 07:04:07 +00:00
<Button label="Help" severity="help" />
2023-10-15 09:38:39 +00:00
<Button label="Danger" severity="danger" />
2024-01-18 09:56:05 +00:00
<Button label="Contrast" severity="contrast" />
2023-10-15 09:38:39 +00:00
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center flex-wrap gap-4">
2023-02-28 08:29:30 +00:00
<Button label="Primary" />
2023-03-03 07:04:07 +00:00
<Button label="Secondary" severity="secondary" />
<Button label="Success" severity="success" />
<Button label="Info" severity="info" />
2024-05-08 11:35:11 +00:00
<Button label="Warn" severity="warn" />
2023-03-03 07:04:07 +00:00
<Button label="Help" severity="help" />
<Button label="Danger" severity="danger" />
2024-01-18 09:56:05 +00:00
<Button label="Contrast" severity="contrast" />
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>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center flex-wrap gap-4">
2023-02-28 08:29:30 +00:00
<Button label="Primary" />
2023-03-03 07:04:07 +00:00
<Button label="Secondary" severity="secondary" />
<Button label="Success" severity="success" />
<Button label="Info" severity="info" />
2024-05-08 11:35:11 +00:00
<Button label="Warn" severity="warn" />
2023-03-03 07:04:07 +00:00
<Button label="Help" severity="help" />
<Button label="Danger" severity="danger" />
2024-01-18 09:56:05 +00:00
<Button label="Contrast" severity="contrast" />
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>