ganl / vue-icon-font

IconFont plugin for Vuejs

Home Page:https://ganl.github.io/vue-icon-font/demo/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

IconFont plugin for Vuejs

https://ganl.github.io/vue-icon-font/demo/

License:MIT License


Languages

Language:JavaScript 74.4%Language:Vue 25.6%