You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
308 B

8 months ago
8 months ago
  1. <script>
  2. import plugins from "./plugins/plugins.js"
  3. export default {
  4. onLaunch: function() {
  5. this.$.appContext.app.use(plugins)
  6. this.$store.commit('initConfig')
  7. },
  8. onShow: function() {},
  9. onHide: function() {}
  10. }
  11. </script>
  12. <style>
  13. /*每个页面公共css */
  14. @import url("uni.css");
  15. </style>