Created
October 30, 2018 07:19
-
-
Save ygmpkk/9ab5adc57a76cb71eb78b895f9aee8d8 to your computer and use it in GitHub Desktop.
淘宝小程序 switch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<view class="container"> | |
<view> | |
DEBUG MODE: {{ debug }} | |
</view> | |
<view> | |
<switch :checked='debug' @change='handleChanged' /> | |
</view> | |
</view> | |
</template> | |
<style></style> | |
<script> | |
export default { | |
data() { | |
return { | |
debug: false, | |
}; | |
}, | |
methods: { | |
handleChanged(e) { | |
const { checked } = e.detail | |
this.debug = checked | |
}, | |
}, | |
}; | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment