1234567891011121314151617181920212223242526272829 |
- <template>
- <el-dialog title="关键信息点" :visible.sync="dialogFormVisible">
- <div slot="footer" class="dialog-footer">
- <el-button @click="dialogFormVisible = false">取 消</el-button>
- <el-button type="primary" @click="dialogFormVisible = false">确 定</el-button>
- </div>
- </el-dialog>
- </template>
- <script>
- export default {
- name: "cruxDialog",
- data() {
- return {
- dialogFormVisible: false
- }
- },
- methods: {
- dialogOpen() {
- this.dialogFormVisible = true
- }
- }
- }
- </script>
- <style scoped>
- </style>
|