UNPKG
numeric-input-v2
Version:
latest (1.0.2)
1.0.2
1.0.1
Vue Numeric Input Component
github.com/fasterv410/vue-numeric-input
fasterv410/vue-numeric-input
numeric-input-v2
/
src
/
main.js
12 lines
(9 loc)
•
180 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
Vue
from
'vue'
import
App
from
'./App'
Vue
.
config
.
productionTip
=
false
/* eslint-disable no-new */
new
Vue
({
el
:
'#app'
,
components
: {
App
},
template
:
'<App/>'
})