You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
shop-app/App.vue

33 lines
635 B

<!--
* @Author: ch
* @Date: 2019-04-01 01:47:12
* @LastEditors: ch
2 years ago
* @LastEditTime: 2022-03-29 10:29:13
* @Description: file content
-->
3 years ago
<script>
export default {
onLaunch: function() {
console.log('App Launch')
},
onShow: function() {
console.log('App Show')
2 years ago
// console.log(this.$route);
3 years ago
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
/*每个页面公共css */
</style>
<style lang="scss">
/* 注意要写在第一行同时给style标签加入lang="scss"属性 */
@import "uview-ui/index.scss";
// *{
// font-family: 'PingFang SC-中粗体, PingFang SC';
// }
3 years ago
</style>