aboutsummaryrefslogtreecommitdiffstats
path: root/third_party/webrender/debugger/src/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/webrender/debugger/src/main.js')
-rw-r--r--third_party/webrender/debugger/src/main.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/third_party/webrender/debugger/src/main.js b/third_party/webrender/debugger/src/main.js
new file mode 100644
index 00000000000..1259c32a0f3
--- /dev/null
+++ b/third_party/webrender/debugger/src/main.js
@@ -0,0 +1,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)
+})