21 lines
572 B
HTML
21 lines
572 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Examples of Vue component usage</title>
|
|
</head>
|
|
<body>
|
|
<ul>
|
|
<li>
|
|
<a href="external.html">External script file</a> - using a Font Awesome pack with script tag include
|
|
</li>
|
|
<li>
|
|
<a href="library.html">Define the icon library</a> - use the SVG Framework's Library for registering icons
|
|
</li>
|
|
<li>
|
|
<a href="explicit.html">Explicitly define icons</a> - define your icons with ES6 imports
|
|
</li>
|
|
</ul>
|
|
</body>
|
|
</html>
|