vue-text-spotlight
v0.1.4
Published
文字聚光灯
Downloads
4
Readme
vue-text-spotlight(文字聚光灯效果)
使用步骤
1.
npm install vue-text-spotlight
2.在 vue 项目入口文件 main.js 中导入并注册为全局插件
import spotlight from "vue-text-spotlight";
Vue.use(spotlight);
3.在其他页面直接使用
<spotlight :text='options.text'></spotlight>
// data数据
data() {
return {
options: {
text: 'onepiece'
}
}
}
参数如下:
| 参数 | 参数类型 | 默认值 | | ---- | :------: | :-----------: | | text | String | VUE-SPOTLIGHT |