primevue-mirror/doc/button/RoundedDoc.vue

72 lines
2.5 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>Rounded buttons have a circular border radius.</p>
</DocSectionText>
<div class="card flex justify-content-center flex-wrap gap-3">
2023-03-03 07:04:07 +00:00
<Button label="Primary" rounded />
<Button label="Secondary" severity="secondary" rounded />
<Button label="Success" severity="success" rounded />
<Button label="Info" severity="info" rounded />
<Button label="Warning" severity="warning" rounded />
<Button label="Help" severity="help" rounded />
<Button label="Danger" severity="danger" rounded />
2024-01-18 09:56:05 +00:00
<Button label="Contrast" severity="contrast" rounded />
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" rounded />
2023-03-03 07:04:07 +00:00
<Button label="Secondary" severity="secondary" rounded />
<Button label="Success" severity="success" rounded />
<Button label="Info" severity="info" rounded />
<Button label="Warning" severity="warning" rounded />
<Button label="Help" severity="help" rounded />
2023-10-15 09:38:39 +00:00
<Button label="Danger" severity="danger" rounded />
2024-01-18 09:56:05 +00:00
<Button label="Contrast" severity="contrast" rounded />
2023-10-15 09:38:39 +00:00
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card flex justify-content-center flex-wrap gap-3">
2023-03-03 07:04:07 +00:00
<Button label="Primary" rounded />
<Button label="Secondary" severity="secondary" rounded />
<Button label="Success" severity="success" rounded />
<Button label="Info" severity="info" rounded />
<Button label="Warning" severity="warning" rounded />
<Button label="Help" severity="help" rounded />
<Button label="Danger" severity="danger" rounded />
2024-01-18 09:56:05 +00:00
<Button label="Contrast" severity="contrast" rounded />
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-02-28 08:29:30 +00:00
<div class="card flex justify-content-center flex-wrap gap-3">
2023-03-03 07:04:07 +00:00
<Button label="Primary" rounded />
<Button label="Secondary" severity="secondary" rounded />
<Button label="Success" severity="success" rounded />
<Button label="Info" severity="info" rounded />
<Button label="Warning" severity="warning" rounded />
<Button label="Help" severity="help" rounded />
<Button label="Danger" severity="danger" rounded />
2024-01-18 09:56:05 +00:00
<Button label="Contrast" severity="contrast" rounded />
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>