primevue-mirror/doc/customicons/FontAwesomeDoc.vue

25 lines
550 B
Vue
Raw Normal View History

2023-04-18 14:58:46 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p><a href="https://fontawesome.com/">Font Awesome</a> is a popular icon library with a wide range of icons.</p>
</DocSectionText>
<DocSectionCode :code="code" hideToggleCode hideCodeSandbox hideStackBlitz />
</template>
<script>
export default {
data() {
return {
code: {
2023-10-15 09:38:39 +00:00
basic: `
<Dropdown>
2023-04-18 14:58:46 +00:00
<template #dropdownicon>
<i class="fa-light fa-chevron-down"></i>
</template>
2023-10-15 09:38:39 +00:00
</Dropdown>
`
2023-04-18 14:58:46 +00:00
}
};
}
};
</script>