17 lines
301 B
JavaScript
17 lines
301 B
JavaScript
|
|
import { useLaunch } from '@tarojs/taro'
|
|
import './app.scss'
|
|
import 'taro-ui/dist/style/index.scss' // 全局引入一次即可
|
|
|
|
function App({ children }) {
|
|
|
|
useLaunch(() => {
|
|
console.log('App launched.')
|
|
})
|
|
|
|
// children 是将要会渲染的页面
|
|
return children
|
|
}
|
|
|
|
export default App
|