1.0.6 • Published 4 years ago
@codser/tools v1.0.6
@codser/tools
- 工具库
使用方式
安装该组件
yarn add @codser/tools
npm install @codser/tools --save
引入
// 自定义指令参考:https://cn.vuejs.org/v2/guide/custom-directive.html
import tools from '@codser/tools';
Vue.use(tools,{
// isdirect:false, // 是否启用指令
directives:{ // 自定义指令,或覆盖指令
// "test":{
// direct:{
// bind: function (el, binding) {
// el.style.position = 'fixed'
// el.style.top = binding.value + 'px'
// el.style.background ='green'
// }
// },
// desc:'测试指令描述'
// }
}
})
使用
<!--详情参考examples/App.vue,examples/main.js-->