Last active
April 15, 2019 17:34
-
-
Save victorsteven/877d0c4c574cab2f7e1161afe2c4cc7c to your computer and use it in GitHub Desktop.
app.js file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require('./bootstrap'); | |
window.Vue = require('vue'); | |
import swal from 'sweetalert2'; | |
window.swal = swal; | |
import VueCtkDateTimePicker from 'vue-ctk-date-time-picker'; | |
import 'vue-ctk-date-time-picker/dist/vue-ctk-date-time-picker.css'; | |
Vue.component('VueCtkDateTimePicker', VueCtkDateTimePicker); | |
Vue.component('new-arrivals', require('./components/NewArrivals.vue').default); | |
const app = new Vue({ | |
el: '#app' | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment