App.vue 204 B

1234567891011121314
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. this.$store.dispatch('app/initDevice')
  5. }
  6. }
  7. </script>
  8. <style lang="scss">
  9. page {
  10. min-height: 100%;
  11. background: #f7f7f7;
  12. }
  13. </style>