platypush-webext/src/options/options.js

12 lines
207 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-13 17:28:50 +02:00
require('../common.scss');
2020-06-12 01:03:46 +02:00
global.browser = require('webextension-polyfill');
/* eslint-disable no-new */
new Vue({
el: '#app',
render: h => h(App),
});