| 1234567891011121314151617181920212223242526272829303132 |
- <template>
- <div>
- <mu-dialog title="警告" width="360" :open.sync="openSimple">
- {{text}}
- <mu-button slot="actions" flat color="primary" @click="closeSimpleDialog">关闭</mu-button>
- </mu-dialog>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- openSimple: false,
- text:'1111'
- };
- },
- methods: {
- openSimpleDialog(info) {
- this.openSimple = true;
- this.text = info;
- },
- closeSimpleDialog() {
- this.openSimple = false;
- }
- }
- }
- </script>
- <style scoped>
- </style>
|