Vue.component('modal', {
template: '#modal-template'
}
new Vue({
el: "#app",
data: {
showModal: false
},
methods: {
function(){
if (1+1=2){
покажем модальное окно, но как?
}
}
.............
computed: {
showModal: function () {
if (условие) {
return true
}
return false
}
}