App.vue 269 B

123456789101112131415161718
  1. <script>
  2. /**
  3. * vuex管理登陆状态,具体可以参考官方登陆模板示例
  4. */
  5. export default {
  6. data() {},
  7. methods: {},
  8. computed: {},
  9. onLaunch: function() {},
  10. onShow: function() {},
  11. };
  12. </script>
  13. <style lang="scss">
  14. *{
  15. box-sizing: border-box;
  16. }
  17. </style>