Skip to content

Install

bash
pnpm add @fast-element-plus/icons-vue

Vue ^3.5.11 is required as a peer dependency.

Minimal CDN example

Save this as an HTML file and open it in a browser. Load Vue first, then use components from FastElementPlusIconsVue. Element Plus and build tools are not required.

ResourcejsDelivr
vue@3.5.11/dist/vue.global.prod.jsjsDelivr
@fast-element-plus/icons-vue/dist/index.global.min.jsjsDelivr
html
<!doctype html>
<html lang="en">
	<head>
		<meta charset="UTF-8" />
		<title>Fast Icons</title>
	</head>
	<body>
		<div id="app"></div>
		<script src="https://cdn.jsdelivr.net/npm/vue@3.5.11/dist/vue.global.prod.js"></script>
		<script src="https://cdn.jsdelivr.net/npm/@fast-element-plus/icons-vue/dist/index.global.min.js"></script>
		<script>
			Vue.createApp({
				render: () => Vue.h(FastElementPlusIconsVue.Address, { width: 32, height: 32, role: "img", "aria-label": "Address" }),
			}).mount("#app");
		</script>
	</body>
</html>