Ahmad Kholid 3 years ago
parent
commit
cd97cfa9d5
2 changed files with 3 additions and 1 deletions
  1. 1 1
      package.json
  2. 2 0
      src/newtab/index.js

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "automa",
-  "version": "1.13.0",
+  "version": "1.13.1",
   "description": "An extension for automating your browser by connecting blocks",
   "license": "MIT",
   "repository": {

+ 2 - 0
src/newtab/index.js

@@ -1,4 +1,5 @@
 import { createApp } from 'vue';
+import inspector from 'vue-inspector-agnostic';
 import App from './App.vue';
 import router from './router';
 import store from '../store';
@@ -17,6 +18,7 @@ createApp(App)
   .use(vueI18n)
   .use(vueToastification)
   .use(vRemixicon, icons)
+  .use(inspector)
   .mount('#app');
 
 if (module.hot) module.hot.accept();