2020-08-27 17:18:57 +08:00

240 B

<template>
    <Checkbox :checked.sync="single">checkbox</Checkbox>
</template>
<script>
    export default {
        data: function () {
            return {
            }
        },
        methods: {
        }
    }
</script>