ui_migration fix(deps): --preliminary-- added stronger type checking on things properties
This commit is contained in:
parent
f4a10ec897
commit
5bbe88c9f7
6 changed files with 75 additions and 40 deletions
|
|
@ -3,13 +3,12 @@ import App from "./App.vue";
|
|||
import store from "./store";
|
||||
import UIkit from "uikit";
|
||||
|
||||
import VueObserveVisibility from "vue-observe-visibility";
|
||||
|
||||
// Import MD icons
|
||||
import "material-symbols/outlined.css";
|
||||
|
||||
import queryMixin from "@/mixins/labThingsMixins.js";
|
||||
//import queryMixin from "@/mixins/labThingsMixins.js";
|
||||
import modalMixin from "@/mixins/modalMixins.js";
|
||||
import labThingsMixins from './mixins/labThingsMixins';
|
||||
|
||||
// UIKit overrides
|
||||
UIkit.mixin(
|
||||
|
|
@ -25,11 +24,12 @@ UIkit.mixin(
|
|||
const app = createApp(App);
|
||||
|
||||
// Use visibility observer
|
||||
app.use(VueObserveVisibility);
|
||||
//app.use(VueObserveVisibility);
|
||||
|
||||
// Use global mixins
|
||||
app.mixin(queryMixin);
|
||||
// app.mixin(queryMixin);
|
||||
app.mixin(modalMixin);
|
||||
app.mixin(labThingsMixins);
|
||||
|
||||
// Use Vuex store
|
||||
app.use(store);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue