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

447 B

<template>
    <Switch  v-model="switch2">
        <span slot="open"></span>
        <span slot="close"></span>
    </Switch>
    <Switch  v-model="switch2">
        <Icon slot="open" type="check"></Icon>
        <Icon slot="close" type="close"></Icon>
    </Switch>
</template>
<script>
    export default {
        data: function () {
            return {
                switch2: false
            }
        },
    }
</script>