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

297 B
Raw Blame History

layout
templateLayout
<template>
    <Checkbox v-model="checked">checkbox</Checkbox>
    <Checkbox label="使用disabeldcheckbox" disabled></Checkbox>
</template>
<script>
export default {
    data() {
        return {
            checked: false,
        }
    }
}
</script>