2022-09-09 20:41:18 +00:00
< template >
< div >
2022-12-19 11:57:07 +00:00
< Head >
< Title > Vue Icon Library - PrimeVue < / Title >
2023-04-18 14:58:46 +00:00
< Meta name = "description" content = "PrimeIcons is the default icon library of PrimeVue with over 250 open source icons developed by PrimeTek. PrimeIcons library is optional as PrimeVue components can use any icon with templating." / >
2022-12-19 11:57:07 +00:00
< / Head >
2023-02-28 08:29:30 +00:00
< div class = "doc" >
< div class = "doc-main" >
< div class = "doc-intro" >
< h1 > Icons < / h1 >
< p >
2023-12-31 08:35:02 +00:00
< a href = "https://github.com/primefaces/primeicons" > PrimeIcons < / a >
2023-04-18 14:58:46 +00:00
is the default icon library of PrimeVue with over 250 open source icons developed by PrimeTek . PrimeIcons library is optional as PrimeVue components can use any icon with templating .
2023-02-28 08:29:30 +00:00
< / p >
2022-09-09 20:41:18 +00:00
< / div >
2023-02-28 08:29:30 +00:00
< DocSections :docs ="docs" / >
2022-09-09 20:41:18 +00:00
< / div >
2023-02-28 08:29:30 +00:00
< DocSectionNav :docs ="docs" / >
2022-09-09 20:41:18 +00:00
< / div >
< / div >
< / template >
< script >
2023-09-21 11:21:43 +00:00
import BasicDoc from '@/doc/icons/BasicDoc.vue' ;
import ColorDoc from '@/doc/icons/ColorDoc.vue' ;
import ConstantsDoc from '@/doc/icons/ConstantsDoc.vue' ;
import DownloadDoc from '@/doc/icons/DownloadDoc.vue' ;
2024-03-29 11:49:59 +00:00
import FigmaDoc from '@/doc/icons/FigmaDoc.vue' ;
2023-09-21 11:21:43 +00:00
import ImportDoc from '@/doc/icons/ImportDoc.vue' ;
import ListDoc from '@/doc/icons/ListDoc.vue' ;
import SizeDoc from '@/doc/icons/SizeDoc.vue' ;
import SpinDoc from '@/doc/icons/SpinDoc.vue' ;
2023-02-28 08:29:30 +00:00
2022-09-09 20:41:18 +00:00
export default {
data ( ) {
return {
2023-02-28 08:29:30 +00:00
docs : [
{
id : 'download' ,
label : 'Download' ,
component : DownloadDoc
} ,
{
id : 'import' ,
label : 'Import' ,
component : ImportDoc
} ,
2024-03-29 11:49:59 +00:00
{
id : 'figma' ,
label : 'Figma' ,
component : FigmaDoc
} ,
2023-02-28 08:29:30 +00:00
{
id : 'basic' ,
label : 'Basic' ,
component : BasicDoc
} ,
{
id : 'size' ,
label : 'Size' ,
component : SizeDoc
} ,
{
id : 'color' ,
label : 'Color' ,
component : ColorDoc
} ,
{
id : 'spin' ,
label : 'Spin' ,
component : SpinDoc
} ,
{
id : 'constants' ,
label : 'Constants' ,
component : ConstantsDoc
} ,
{
id : 'list' ,
label : 'List' ,
component : ListDoc
}
]
2022-09-09 20:41:18 +00:00
} ;
}
} ;
< / script >