fujunling
2023-05-26 94c63100679fdbdd41118ff3b08a10abf42535ea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<template>
  <div>
    <el-button @click="visible = true">测试</el-button>
    <FormTemplate :visible.sync="visible"></FormTemplate>
  </div>
</template>
 
<script>
import FormTemplate from "../../components/FormTemplate/index";
export default {
  name: "FormTempalteTest",
  components: { FormTemplate },
  data() {
    return {
      visible: false,
    };
  },
};
</script>