This commit is contained in:
syuilo 2018-02-17 03:53:21 +09:00
parent 8e9e796b43
commit 79705d2035
1 changed files with 6 additions and 0 deletions

View File

@ -20,6 +20,12 @@ require('./common/views/directives');
// Register global components
require('./common/views/components');
Vue.mixin({
destroyed(this: any) {
this.$el.parentNode.removeChild(this.$el);
}
});
import App from './app.vue';
import checkForUpdate from './common/scripts/check-for-update';