mirror of
https://github.com/pinry/pinry.git
synced 2026-02-03 21:19:23 +01:00
16 lines
300 B
JavaScript
16 lines
300 B
JavaScript
import Buefy from 'buefy';
|
|
import Vue from 'vue';
|
|
import { VueMasonryPlugin } from 'vue-masonry';
|
|
import App from './App.vue';
|
|
import router from './router';
|
|
|
|
|
|
Vue.config.productionTip = false;
|
|
Vue.use(Buefy);
|
|
Vue.use(VueMasonryPlugin);
|
|
|
|
new Vue({
|
|
router,
|
|
render: h => h(App),
|
|
}).$mount('#app');
|