田源
2023-07-28 02d067a378e60bb57714e4a20c3f6d9bfc125766
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>