You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
buster/src/options/main.js

18 lines
271 B
JavaScript

import Vue from 'vue';
import App from './App';
async function init() {
try {
await document.fonts.load('400 14px Roboto');
await document.fonts.load('500 14px Roboto');
} catch (err) {}
new Vue({
el: '#app',
render: h => h(App)
});
}
init();