uni-events-helper-wx
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.

21 lines
348 B

3 years ago
  1. <script>
  2. import {
  3. init
  4. } from "@/nxTemp";
  5. export default {
  6. onLaunch(options) {
  7. console.log('App onLaunch')
  8. init(options);
  9. },
  10. onShow: function() {
  11. console.log('App Show')
  12. },
  13. onHide: function() {
  14. console.log('App Hide')
  15. }
  16. };
  17. </script>
  18. <style lang="scss">
  19. @import "static/style/base.scss";
  20. </style>