12345678910111213141516171819202122232425 |
- <script>
- export default {
- onLaunch: function () {
- console.log('App Launch')
- },
- onShow: function () {
- console.log('App Show')
- },
- onHide: function () {
- console.log('App Hide')
- }
- }
- </script>
- <style>
- page{background-color: #fff}
-
- view,
- text,
- image,
- input,
- textarea {
- box-sizing: border-box;
- }
- </style>
|