This commit is contained in:
hackrobot
2024-03-19 12:39:30 +08:00
parent 7a453ad502
commit dcca573450
22 changed files with 367 additions and 0 deletions

15
src/app.js Normal file
View File

@@ -0,0 +1,15 @@
import { useLaunch } from '@tarojs/taro'
import './app.scss'
function App({ children }) {
useLaunch(() => {
console.log('App launched.')
})
// children 是将要会渲染的页面
return children
}
export default App