123456789101112131415161718 |
- <script>
- export default {
- computed: {},
- onLaunch: function() {
- console.log('App Launch')
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style lang="scss">
- @import "@/static/style/app.scss";
- </style>
|