App.vue 371 B

1234567891011121314151617181920
  1. <script>
  2. export default {
  3. onLaunch: function () {
  4. if (this.$method.isLogin()) {
  5. this.$store.dispatch("getUserInfo");
  6. }
  7. },
  8. onShow: function () {
  9. console.log("App Show");
  10. },
  11. onHide: function () {
  12. console.log("App Hide");
  13. },
  14. };
  15. </script>
  16. <style lang="scss">
  17. /*每个页面公共css */
  18. @import "@/uni_modules/uview-ui/index.scss";
  19. </style>