xinelu-applet-ui/App.vue

23 lines
333 B
Vue
Raw Normal View History

2023-09-19 14:58:40 +08:00
<script>
export default {
2023-09-20 10:42:44 +08:00
onLaunch: function() {},
onShow: function() {},
onHide: function() {}
2023-09-19 14:58:40 +08:00
}
</script>
2023-09-20 10:42:44 +08:00
<style lang="scss">
@import "uview-ui/index.scss";
2023-09-19 14:58:40 +08:00
/*每个页面公共css */
2023-09-20 10:42:44 +08:00
page {
// background-color: #F4F5F7;
}
.app {
width: 100%;
height: 100%;
2023-09-20 11:30:45 +08:00
text-align: justify;
2023-09-20 10:42:44 +08:00
color: #000000;
}
</style>