atst/js/index.js
2018-08-07 13:05:07 -04:00

24 lines
411 B
JavaScript

import classes from '../styles/atat.scss'
import Vue from 'vue/dist/vue'
const app = new Vue({
el: '#vue-root',
methods: {
closeModal: function(name) {
this.modals[name] = false
},
openModal: function (name) {
this.modals[name] = true
}
},
data: function() {
return {
modals: {
styleguideModal: false,
}
}
}
})
console.log('hello from index')