iview/examples/routers/modal.vue

23 lines
628 B
Vue
Raw Normal View History

2017-03-09 18:31:47 +08:00
<template>
<div>
<Button @click="modal12 = true">Open the first modal</Button>
<Button @click="modal13 = true">Open the second modal</Button>
<Modal v-model="modal12" draggable scrollable title="Modal 1">
<div>This is the first modal</div>
</Modal>
<Modal v-model="modal13" draggable scrollable title="Modal 2">
<div>This is the second modal</div>
</Modal>
2017-03-09 18:31:47 +08:00
</div>
</template>
<script>
export default {
data () {
return {
modal12: false,
modal13: false
2017-03-09 18:31:47 +08:00
}
}
}
</script>