65 lines
2.1 KiB
Vue
65 lines
2.1 KiB
Vue
|
<template>
|
||
|
<DocSectionText v-bind="$attrs">
|
||
|
<p>Severity defines the type of button.</p>
|
||
|
</DocSectionText>
|
||
|
<div class="card flex justify-content-center flex-wrap gap-3">
|
||
|
<Button label="Primary" />
|
||
|
<Button label="Secondary" class="p-button-secondary" />
|
||
|
<Button label="Success" class="p-button-success" />
|
||
|
<Button label="Info" class="p-button-info" />
|
||
|
<Button label="Warning" class="p-button-warning" />
|
||
|
<Button label="Help" class="p-button-help" />
|
||
|
<Button label="Danger" class="p-button-danger" />
|
||
|
</div>
|
||
|
<DocSectionCode :code="code" />
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
code: {
|
||
|
basic: `
|
||
|
<Button label="Primary" />
|
||
|
<Button label="Secondary" class="p-button-secondary" />
|
||
|
<Button label="Success" class="p-button-success" />
|
||
|
<Button label="Info" class="p-button-info" />
|
||
|
<Button label="Warning" class="p-button-warning" />
|
||
|
<Button label="Help" class="p-button-help" />
|
||
|
<Button label="Danger" class="p-button-danger" />`,
|
||
|
options: `
|
||
|
<template>
|
||
|
<div class="card flex justify-content-center flex-wrap gap-3">
|
||
|
<Button label="Primary" />
|
||
|
<Button label="Secondary" class="p-button-secondary" />
|
||
|
<Button label="Success" class="p-button-success" />
|
||
|
<Button label="Info" class="p-button-info" />
|
||
|
<Button label="Warning" class="p-button-warning" />
|
||
|
<Button label="Help" class="p-button-help" />
|
||
|
<Button label="Danger" class="p-button-danger" />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
<\/script>`,
|
||
|
composition: `
|
||
|
<template>
|
||
|
<div class="card flex justify-content-center flex-wrap gap-3">
|
||
|
<Button label="Primary" />
|
||
|
<Button label="Secondary" class="p-button-secondary" />
|
||
|
<Button label="Success" class="p-button-success" />
|
||
|
<Button label="Info" class="p-button-info" />
|
||
|
<Button label="Warning" class="p-button-warning" />
|
||
|
<Button label="Help" class="p-button-help" />
|
||
|
<Button label="Danger" class="p-button-danger" />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
<\/script>`
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
</script>
|