62 lines
2.0 KiB
Vue
62 lines
2.0 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" severity="secondary" />
|
|
<Button label="Success" severity="success" />
|
|
<Button label="Info" severity="info" />
|
|
<Button label="Warning" severity="warning" />
|
|
<Button label="Help" severity="help" />
|
|
<Button label="Danger" severity="danger" />
|
|
</div>
|
|
<DocSectionCode :code="code" />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
code: {
|
|
basic: `<Button label="Primary" />
|
|
<Button label="Secondary" severity="secondary" />
|
|
<Button label="Success" severity="success" />
|
|
<Button label="Info" severity="info" />
|
|
<Button label="Warning" severity="warning" />
|
|
<Button label="Help" severity="help" />
|
|
<Button label="Danger" severity="danger" />`,
|
|
options: `<template>
|
|
<div class="card flex justify-content-center flex-wrap gap-3">
|
|
<Button label="Primary" />
|
|
<Button label="Secondary" severity="secondary" />
|
|
<Button label="Success" severity="success" />
|
|
<Button label="Info" severity="info" />
|
|
<Button label="Warning" severity="warning" />
|
|
<Button label="Help" severity="help" />
|
|
<Button label="Danger" severity="danger" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
<\/script>`,
|
|
composition: `<template>
|
|
<div class="card flex justify-content-center flex-wrap gap-3">
|
|
<Button label="Primary" />
|
|
<Button label="Secondary" severity="secondary" />
|
|
<Button label="Success" severity="success" />
|
|
<Button label="Info" severity="info" />
|
|
<Button label="Warning" severity="warning" />
|
|
<Button label="Help" severity="help" />
|
|
<Button label="Danger" severity="danger" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
<\/script>`
|
|
}
|
|
};
|
|
}
|
|
};
|
|
</script>
|