aboutsummaryrefslogtreecommitdiffstats
path: root/third_party/webrender/debugger/src/main.js
blob: 1259c32a0f3aa6e9d7719344fe564154a04e76f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Vue from 'vue';
import Buefy from 'buefy';
import 'buefy/dist/buefy.css';
import "vue-material-design-icons/styles.css";
import App from './App.vue';
import store from './store';

Vue.use(Buefy);

new Vue({
    el: '#app',
    store,
    render: h => h(App)
})