# vue-neon-light **Repository Path**: hoseapps/vue-neon-light ## Basic Information - **Project Name**: vue-neon-light - **Description**: Neon Light Text plugin for Vue.js | 基于Vue.js霓虹灯字体效果插件 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: https://superhos.github.io/vue-neon-light/ - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-08-15 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # vue-neon-light 1.0.5 [](http://opensource.org/licenses/MIT) Neon Light plugin for Vue.js  GIF demo effect distortion,Please refer to the DEMO LIVE. [中文文档](/docs/zh/README.md) ## DEMO Live [Demo](https://superhos.github.io/vue-neon-light/) >>> ## Installation 1) Install package via NPM ```bash npm i -S vue-neon-light ``` 2) Install plugin within project ```javascript import VueNeonLight from 'vue-neon-light' // In Vue Component components:{ VueNeonLight } ``` or ```javascript const VueNeonLight = request('vue-neon-light'); ``` or ```html ``` ## Usage 1) Import the font file I have provided two simple font file (\*.ttf) to you. One for the English (beon-webfont.ttf), the other one for the Chinese (bb1093.TTF). You can download the others font and use them which you perfer. Copy font file into the `/public`. ```javascript import VueNeonLight from 'vue-neon-light' import fontPath from '../public/beon-webfont.ttf' // Setting path as a variable. export default { name: 'app', components: { VueNeonLight }, data(){ return { font: fontPath } } } ``` 2) `fontFile` isnecessary. ```html