UNPKG

vue-thousandth-input

Version:

vue-thousandth-input component for Vue.js / 基于vue的一个千分位输入表单组件

13 lines (10 loc) 498 B
import thousandth from './src/components/thousandth.vue' // 这一步判断window.Vue是否存在,因为直接引用vue.min.js, 它会把Vue绑到Window上,我们直接引用打包好的js才能正常跑起来。 if (typeof window !== 'undefined' && window.Vue) { window.Vue.component('vue-thousandth-pinput', thousandth) } //这样就可以使用Vue.use进行全局安装了。 thousandth.install = function(Vue){ Vue.component(thousandth.name, thousandth) } export default thousandth