button.vue 412 B

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