button.vue 394 B

123456789101112131415161718192021
  1. <template>
  2. <div>
  3. <div m="b-2">
  4. <el-checkbox v-model="config.autoInsertSpace"
  5. >autoInsertSpace</el-checkbox
  6. >
  7. </div>
  8. <el-config-provider :button="config">
  9. <el-button>中文</el-button>
  10. </el-config-provider>
  11. </div>
  12. </template>
  13. <script lang="ts" setup>
  14. import { reactive } from 'vue'
  15. const config = reactive({
  16. autoInsertSpace: true,
  17. })
  18. </script>