All Projects → ganl → vue-icon-font

ganl / vue-icon-font

Licence: MIT license
IconFont plugin for Vuejs

Programming Languages

javascript
184084 projects - #8 most used programming language
Vue
7211 projects

Projects that are alternatives of or similar to vue-icon-font

Remixicon
Open source neutral style icon system
Stars: ✭ 3,956 (+15724%)
Mutual labels:  icon, icon-font
Eva Icons
A pack of more than 480 beautifully crafted Open Source icons. SVG, Sketch, Web Font and Animations support.
Stars: ✭ 8,114 (+32356%)
Mutual labels:  icon, icon-font
Fontisto
The iconic font and CSS toolkit. Fontisto gives you scalable vector icons that can instantly be customized: size, color, drop shadow and anything that can be done with the power of CSS.
Stars: ✭ 413 (+1552%)
Mutual labels:  icon, icon-font
elephicon
A GUI wrapper for png2icons.
Stars: ✭ 90 (+260%)
Mutual labels:  icon, ico
Sketch Iconfont
This plugin helps you easily insert and manage icons from icon fonts.
Stars: ✭ 1,980 (+7820%)
Mutual labels:  icon, icon-font
icoextract
Extract icons from Windows PE files (.exe/.dll)
Stars: ✭ 56 (+124%)
Mutual labels:  icon, ico
Getfavicon
获取网站的Favicon图标并显示在你的网页上.
Stars: ✭ 45 (+80%)
Mutual labels:  icon, ico
Rsrc
Tool for embedding .ico & manifest resources in Go programs for Windows.
Stars: ✭ 767 (+2968%)
Mutual labels:  icon, ico
Svgtofont
Read a set of SVG icons and ouput a TTF/EOT/WOFF/WOFF2/SVG font.
Stars: ✭ 149 (+496%)
Mutual labels:  icon, icon-font
Icons
The premium icon font for @uiwjs Component Library. https://uiwjs.github.io/icons
Stars: ✭ 99 (+296%)
Mutual labels:  icon, icon-font
fontagon
Fontagon is a great tool that easily converts svg into icon font. Fontagon-cli allows faster conversion to commands.
Stars: ✭ 18 (-28%)
Mutual labels:  icon, icon-font
Eficonfont
Yet another stupid wrapper of icon font.
Stars: ✭ 200 (+700%)
Mutual labels:  icon, icon-font
ICNS2ICO
ICNS2ICO lets you easily convert icons from the Apple's ICNS format to the Windows ICO format.
Stars: ✭ 17 (-32%)
Mutual labels:  icon, ico
NanoIconPackLite
带图标展示界面的简陋图标包APP模版 A lite icon pack dashboard with an icon UI
Stars: ✭ 35 (+40%)
Mutual labels:  icon, icon-font
Linearicons
Linearicons is the highest quality set of line icons, matching with minimalist UI designs in iOS.
Stars: ✭ 64 (+156%)
Mutual labels:  icon, ico
Awesome Iconjar
44 Collect free icon sets for iconjar. 收集免费的图标包,iconjar 格式(44套)。
Stars: ✭ 188 (+652%)
Mutual labels:  icon, icon-font
Rubik
Material Design 风格的 Vue.js UI 组件库
Stars: ✭ 277 (+1008%)
Mutual labels:  vue-components, icon-font
VueXcode
Syntax highlighting for .Vue components and .mustache templates in Xcode
Stars: ✭ 25 (+0%)
Mutual labels:  vue-components
data-api
Retrieve data from ICObench
Stars: ✭ 28 (+12%)
Mutual labels:  ico
revue
Revue provides a helpful interface for testing Vue components
Stars: ✭ 16 (-36%)
Mutual labels:  vue-components

vue-icon-font

Build Status Vue 2.x

A iconfont plugin for Vuejs 中文说明

Screenshots

screenshot screenshot screenshot

Installation

NPM (Recommended)

# install dependencies
npm install vue-icon-font

manual

# Download `dist/vue-iconfont.js` and include it in your HTML file
<script src="../dist/vue-iconfont.js"></script>

Iconfont assets

It’s a Vector Icon Management & Communication Platform made by Alimama MUX, designers could upload vector icons here, and users could download it by several kinds of format.Also, the icons could be translated into Fonts for front-end engineers’ usage. screenshot

Download the icons from iconfont.cn, and upzip download.zip.

font-class

copy iconfont.css and font files (.ttf,.eot,.svg,.woff) into your project

# Include the iconfont.css stylsheet into your <head>
<link rel="stylesheet" href="./iconfont.css">

or

# Import css
import './iconfont.css';

use: <icon name="account" type="class"></icon>

symbol,svg (Default,Recommended)

copy iconfont.js into your project

# Include the iconfont.css stylsheet into your <head>
<link rel="stylesheet" href="./iconfont.css">

or

import './iconfont.js';

use: <icon name="password"></icon>

Usage via import (vue-cli)

import Vue from 'vue'
import VueIconFont from 'vue-icon-font'
Vue.use(VueIconFont)

/* font-class */
import '@/assets/iconfont/iconfont.css'

/* symbol,svg */
import '@/assets/iconfont/iconfont.js'
<!-- font-class -->
<icon name="account" type="class"></icon>

<!-- symbol,svg -->
<icon name="password"></icon>

Simple demo here

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].