platypush-webext/src/popup/popup.js

13 lines
248 B
JavaScript
Raw Permalink Normal View History

2020-06-12 01:03:46 +02:00
import Vue from 'vue';
import App from './App';
2020-06-20 01:35:50 +02:00
require('../common.scss');
2020-06-12 01:03:46 +02:00
global.browser = require('webextension-polyfill');
Vue.prototype.$browser = global.browser;
/* eslint-disable no-new */
new Vue({
el: '#app',
render: h => h(App),
});