wangting
2023-07-28 7a49d45da7e1d8d1b9aca8bbfcd22b622bc3e6ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<template>
  <el-dialog
    title="主题库导入"
    :visible.sync="dialogVisible"
    append-to-body
    v-dialogDrag
  ></el-dialog>
</template>
 
<script>
export default {
  name: "ThemeImport",
  props:{
    dialogVisible: {
      get() {
        return this.dialogVisible;
      },
      set(val) {
        this.$emit("update:dialogVisible", val);
      },
    },
  },
  data(){
    return{
 
    }
  }
}
</script>
 
<style scoped>
 
</style>