mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-01-26 11:14:06 +00:00
12 lines
180 B
JavaScript
12 lines
180 B
JavaScript
import TicketCheckout from './components/TicketCheckout.vue'
|
|
|
|
require('./bootstrap')
|
|
|
|
const app = new Vue({
|
|
components: {
|
|
TicketCheckout,
|
|
},
|
|
})
|
|
|
|
app.$mount('#app')
|