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

34 lines
660 B

<!--
* @Author: ch
* @Date: 2019-04-01 01:47:12
* @LastEditors: ch
* @LastEditTime: 2022-04-09 14:59:18
* @Description: file content
-->
2 years ago
<script>
export default {
onLaunch: function() {
// console.log('App Launch')
2 years ago
},
onShow: function() {
// console.log('App Show')
2 years ago
// console.log(this.$route);
2 years ago
},
onHide: function() {
// console.log('App Hide')
2 years ago
}
}
</script>
<style lang="scss">
/* 注意要写在第一行同时给style标签加入lang="scss"属性 */
@import "uview-ui/index.scss";
view,text{
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-size: $font-size-base;
color: $color-grey6;
}
2 years ago
</style>