Vue.jsで動的にモーダルウィンドウを表示する
モーダルウィンドウを動的に表示するVue.js
コンポーネントのサンプルです。
ソース:https://github.com/asaokamei/vue2-dynamic-modal
- モーダルウィンドウのサンプルコードは、例えばVue.jsのオフィシャルサイトにもたくさんあります。ただモーダルの中身が固定されているものが多いです。(例:
index.html
) - 一方、クリックするボタンによりモーダルの中身が変えようとすると面倒になります。(例:
tasks.html
)
動的なモーダルウィンドウの例
動的なモーダルウィンドウの例です。
クリックするタスクによって、モーダルの中身が違うのがわかると思います。
コードの説明
tasks.js
の中を簡単に説明してみます。このJSでは、メインの$app
とmodal
コンポーネントがあります。そして、もうひとつ、Hub
というイベントハブ用のVueオブジェクトを導入しています。
var Hub = new Vue();
Vue.component(
'modal', {
template: '#modal-template',
data: function() {
/* いろいろ設定 */
},
methods: {
open: function (task) {/* コード省略 */},
close: function () {/* コード省略 */}
},
mounted: function() {
this.$nextTick(function () {
Hub.$on('open-modal', this.open);
Hub.$on('close-modal', this.close);
}.bind(this));
}
});
new Vue({
el: '#app',
methods: {
openModal: function (task) {
Hub.$emit('open-modal', task);
},
closeModal: function () {
Hub.$emit('close-modal');
}
}
});
modal
コンポーネントを初期化するときに、open-modal
とclose-modal
というイベントをHub
に登録しています。
メインのapp
コンポーネントでは、例えばopenModal
から、先のopen-modal
イベントを呼び出せば、後はmodal
がよしなに処理してくれます。
HTMLファイル側
モーダルを呼び出すHTML側のJavaScriptも簡単に見てみます。
<ul>
<li v-for="task in tasks">
{{ task.id }}: {{ task.name }}
<button @click="openModal(task)" @keyup.esc="closeModal()">more</button>
</li>
</ul>
ボタンをクリックするとopenModal(task)
が呼び出され、一緒にモーダルに表示するtask
も一緒に渡してます。
参考
Author And Source
この問題について(Vue.jsで動的にモーダルウィンドウを表示する), 我々は、より多くの情報をここで見つけました https://qiita.com/asaokamei/items/c45becfc8c706e70c63c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .