UNPKG
di-vue-mask
Version:
latest (1.2.1)
1.2.1
1.2.0
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
Vue Mask Plugin
github.com/devindex/vue-mask
devindex/vue-mask
di-vue-mask
/
examples
/
main.js
11 lines
(8 loc)
•
161 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
Vue
from
'vue'
;
import
VueMask
from
'di-vue-mask'
;
import
App
from
'./App.vue'
;
Vue
.
use
(
VueMask
);
new
Vue
({
el
:
'#app'
,
render
:
h
=>
h
(
App
) });