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 >
< a href = "https://github.com/primefaces/primeicons" class = "text-primary hover:underline font-semibold" > 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-02-28 08:29:30 +00:00
import BasicDoc from '@/doc/icons/BasicDoc' ;
import ColorDoc from '@/doc/icons/ColorDoc' ;
import ConstantsDoc from '@/doc/icons/ConstantsDoc' ;
import DownloadDoc from '@/doc/icons/DownloadDoc' ;
import ImportDoc from '@/doc/icons/ImportDoc' ;
import ListDoc from '@/doc/icons/ListDoc' ;
import SizeDoc from '@/doc/icons/SizeDoc' ;
import SpinDoc from '@/doc/icons/SpinDoc' ;
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
} ,
{
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 >