qinchulong
2025-03-29 039a4a5433e7f80adc88b491b549e5d9486e4f9a
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
<template>
 
  <VolFormDraggable @save="save" :userComponents="userComponents"></VolFormDraggable>
</template>
 
<script>
// 
import VolFormDraggable from "@/components/basic/VolFormDraggable/index.js";
export default {
  components: {
    VolFormDraggable,
  },
  methods: {
    save(options) {
      this.$Message.success("可以将当前配置保存到数据库中用于二次维护");
      console.log(JSON.stringify(options))
    },
  },
  data(){
      return{
          userComponents:[]
      }
  },
  created() {
    //收起左侧菜单
    this.menu.hide();
  },
};
</script>
<style lang="less" scoped>
</style>