App.vue 387 B

1234567891011121314151617181920212223
  1. <script>
  2. export default {
  3. methods: {},
  4. // 监听 - 页面404
  5. onPageNotFound: function(e) {
  6. // uni.redirectTo({
  7. // url: config.error.url
  8. // });
  9. },
  10. onLaunch: function() {
  11. },
  12. onShow: function() {
  13. },
  14. onHide: function() {
  15. }
  16. };
  17. </script>
  18. <style lang="scss">
  19. /*每个页面公共css */
  20. @import './uni_modules/vk-uview-ui/index.scss';
  21. @import './common/css/app.scss';
  22. </style>