App.vue 289 B

123456789101112131415161718
  1. <script>
  2. export default {
  3. computed: {},
  4. onLaunch: function() {
  5. console.log('App Launch')
  6. },
  7. onShow: function() {
  8. console.log('App Show')
  9. },
  10. onHide: function() {
  11. console.log('App Hide')
  12. }
  13. }
  14. </script>
  15. <style lang="scss">
  16. @import "@/static/style/app.scss";
  17. </style>