mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-05-11 15:38:35 +08:00
21 lines
333 B
TypeScript
21 lines
333 B
TypeScript
export const App = `
|
|
<script setup lang="ts">
|
|
import { onLaunch, onShow, onHide } from '@dcloudio/uni-app';
|
|
onLaunch(() => {
|
|
console.log('App Launch');
|
|
});
|
|
onShow(() => {
|
|
console.log('App Show');
|
|
});
|
|
onHide(() => {
|
|
console.log('App Hide');
|
|
});
|
|
</script>
|
|
<style lang="scss">
|
|
body {
|
|
color:red;
|
|
}
|
|
</style>
|
|
|
|
`;
|