This commit is contained in:
张成
2022-08-03 16:04:18 +08:00
parent 9fe65778e4
commit f4f59fd64d
2 changed files with 41 additions and 21 deletions

View File

@@ -95,23 +95,23 @@
</div>
</template>
<script>
import { common } from '../static/common';
import { common } from '../static/common'
export default {
data() {
return {
menus: window.config.menus,
};
},
mounted: function () {
common.init();
common.initListeners();
common.initHeader();
common.initForms();
common.initMobileMenu();
common.adjustElementsForScreen();
},
};
data() {
return {
menus: window.config.menus
}
},
mounted: function () {
common.init()
common.initListeners()
common.initHeader()
common.initForms()
common.initMobileMenu()
common.adjustElementsForScreen()
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->