iview/examples/routers/switch.vue
huixisheng c9c5e751ae [change] optimize the webapack config
[change] rename test to examples
2017-03-03 22:38:40 +08:00

24 lines
485 B
Vue

<template>
<div>
<i-switch v-model="m1">
<span slot="open"></span>
<span slot="close"></span>
</i-switch>
{{ m1 }}
<div @click="m1 = !m1">toggle</div>
</div>
</template>
<script>
export default {
data () {
return {
m1: false
}
},
methods: {
change (status) {
console.log(status)
}
}
}
</script>