UNPKG
vue-switch
Version:
latest (1.3.0)
1.3.0
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.0
1.0.1
1.0.0
a beautiful switch component for vue
github.com/dai-siki/vue-switch
dai-siki/vue-switch
vue-switch
/
example-2
/
demo.js
15 lines
(12 loc)
•
202 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import
'babel-polyfill'
;
import
mySwitch
from
'../switch-2.vue'
;
const
Vue
=
window
.
Vue
;
new
Vue
({
el
:
'#app'
,
data
: {
toggle
:
true
},
components
: {
'my-switch'
: mySwitch } });