mirror of
https://github.com/igorski/bitmappery.git
synced 2026-07-16 03:48:47 +02:00
12 lines
342 B
JavaScript
12 lines
342 B
JavaScript
import Vue from "vue";
|
|
import BitMappery from "./bitmappery.vue";
|
|
// igorski.nl maintains its own service worker registration, if your
|
|
// custom app requires PWA support, uncomment the following line
|
|
//import "./registerServiceWorker"
|
|
|
|
Vue.config.productionTip = false;
|
|
|
|
new Vue({
|
|
render: h => h( BitMappery )
|
|
}).$mount( "#app" );
|