new Vue({
el: '#app',
data: function() {
return { visible: false }
}
})
<div id="app">
<eui-button @click="visible = true">Button</eui-button>
<eui-dialog :visible.sync="visible" title="Hello world">
<p>Try Element</p>
</eui-dialog>
</div>