input validations WIP

This commit is contained in:
Andrew Croce
2018-08-07 15:43:03 -04:00
parent 3f752280f2
commit b649d17eb8
6 changed files with 99 additions and 13 deletions

View File

@@ -1,14 +1,13 @@
import classes from '../styles/atat.scss'
import Vue from 'vue/dist/vue'
import TextInput from './components/text_input'
const components = {
TextInput
}
import textinput from './components/text_input'
const app = new Vue({
el: '#app-root',
components: {
textinput
},
methods: {
closeModal: function(name) {
this.modals[name] = false
@@ -23,6 +22,5 @@ const app = new Vue({
styleguideModal: false,
}
}
},
components: components
}
})