mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
22 lines
548 B
Vue
22 lines
548 B
Vue
<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: {
|
|
basic: `<Dropdown>
|
|
<template #dropdownicon>
|
|
<i class="fa-light fa-chevron-down"></i>
|
|
</template>
|
|
</Dropdown>`
|
|
}
|
|
};
|
|
}
|
|
};
|
|
</script>
|