Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
installMixins();
if (isIOS) {
themer.setPrimaryColor('#bff937');
themer.setPrimaryColorVariant('#33B5E5');
themer.setAccentColor('#ff8a39');
themer.setSecondaryColor('#a830d7');
}
// import { getExamples } from './examples';
import * as views from './views';
// for (let item of getExamples()) {
// Vue.component(item.component.name, item.component);
// }
Vue.component(views.Home.name, views.Home);
Vue.config.silent = true;
new Vue({
template: `
`
}).$start();