Files
tk-mini-program/App.vue

34 lines
369 B
Vue
Raw Normal View History

2025-05-13 19:39:53 +08:00
<script lang="ts">
2025-07-18 13:06:06 +08:00
2025-05-13 19:39:53 +08:00
export default {
2025-05-20 00:10:07 +08:00
data() {
2025-05-19 18:34:04 +08:00
return {
2025-05-20 00:10:07 +08:00
};
},
2025-07-18 13:06:06 +08:00
onLoad() {
2025-05-19 18:34:04 +08:00
},
2025-06-06 22:36:41 +08:00
methods: {
},
2025-05-20 00:10:07 +08:00
provide() {
return {
$global: {
lastPage: null,
},
};
},
2025-05-13 19:39:53 +08:00
};
</script>
2025-05-12 14:12:36 +08:00
<style>
2025-05-13 19:39:53 +08:00
/* common css for page */
2025-05-20 00:10:07 +08:00
uni-page-body,
html,
body,
page {
2025-05-13 19:39:53 +08:00
width: 100% !important;
height: 100% !important;
overflow: hidden;
}
2025-05-20 00:10:07 +08:00
</style>