湘妃到家前端代码仓库
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.

23 lines
404 B

1 month 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. this.$store.commit('getArea')
  8. },
  9. onShow: function() {
  10. },
  11. onHide: function() {},
  12. methods: {}
  13. }
  14. </script>
  15. <style lang="scss">
  16. /*每个页面公共css */
  17. @import url("uni.css");
  18. body {
  19. font-size: 26rpx;
  20. }
  21. </style>