add code for toastlog

This commit is contained in:
Andreas Zweili 2021-03-27 20:36:12 +01:00
parent 6741f72627
commit c82c5c94f6
2 changed files with 27628 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@ -2,6 +2,14 @@ import { createApp } from 'vue';
import App from './App.vue';
const app = createApp(App)
const app = createApp(App);
app.mount('#app');
if (module.hot) {
module.hot.accept(); // already had this init code
module.hot.addStatusHandler(status => {
if (status === 'prepare') console.clear();
});
}