App.vue 322 B

12345678910111213141516171819
  1. <script lang="ts">
  2. import Vue from "vue";
  3. export default Vue.extend({
  4. mpType: "app",
  5. // onLaunch() {},
  6. // onShow() {
  7. // console.log("App Show");
  8. // },
  9. // onHide() {
  10. // console.log("App Hide");
  11. // },
  12. });
  13. </script>
  14. <style lang="scss">
  15. /*每个页面公共css */
  16. @import "./styles/index.scss";
  17. </style>