2023-02-28 08:29:30 +00:00
|
|
|
<template>
|
|
|
|
<DocSectionText v-bind="$attrs">
|
|
|
|
<p>Outlined buttons display a border without a background initially.</p>
|
|
|
|
</DocSectionText>
|
|
|
|
<div class="card flex justify-content-center flex-wrap gap-3">
|
2023-03-03 07:04:07 +00:00
|
|
|
<Button label="Primary" outlined />
|
|
|
|
<Button label="Secondary" severity="secondary" outlined />
|
|
|
|
<Button label="Success" severity="success" outlined />
|
|
|
|
<Button label="Info" severity="info" outlined />
|
|
|
|
<Button label="Warning" severity="warning" outlined />
|
|
|
|
<Button label="Help" severity="help" outlined />
|
|
|
|
<Button label="Danger" severity="danger" outlined />
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
<DocSectionCode :code="code" />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
code: {
|
2023-08-16 13:58:31 +00:00
|
|
|
basic: `<Button label="Primary" outlined />
|
2023-03-03 07:04:07 +00:00
|
|
|
<Button label="Secondary" severity="secondary" outlined />
|
|
|
|
<Button label="Success" severity="success" outlined />
|
|
|
|
<Button label="Info" severity="info" outlined />
|
|
|
|
<Button label="Warning" severity="warning" outlined />
|
|
|
|
<Button label="Help" severity="help" outlined />
|
|
|
|
<Button label="Danger" severity="danger" outlined />`,
|
2023-08-16 13:58:31 +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" outlined />
|
|
|
|
<Button label="Secondary" severity="secondary" outlined />
|
|
|
|
<Button label="Success" severity="success" outlined />
|
|
|
|
<Button label="Info" severity="info" outlined />
|
|
|
|
<Button label="Warning" severity="warning" outlined />
|
|
|
|
<Button label="Help" severity="help" outlined />
|
|
|
|
<Button label="Danger" severity="danger" outlined />
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
<\/script>`,
|
2023-08-16 13:58:31 +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" outlined />
|
|
|
|
<Button label="Secondary" severity="secondary" outlined />
|
|
|
|
<Button label="Success" severity="success" outlined />
|
|
|
|
<Button label="Info" severity="info" outlined />
|
|
|
|
<Button label="Warning" severity="warning" outlined />
|
|
|
|
<Button label="Help" severity="help" outlined />
|
|
|
|
<Button label="Danger" severity="danger" outlined />
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
<\/script>`
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|