/
githubmirror
/
taro
Обзор
Документация
Войти
/
githubmirror
/
taro
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
examples/swiper-effect/src/app.ts
16 строк
302 B
ZEJIA LIU
chore: 补充 swiper 相关的 example (#16771)
29 окт 2024, 09:43
Не верифицирован
29 окт 2024, 09:43
6ed8d05
Код
Авторство
О чём код?
import { PropsWithChildren } from 'react' import { useLaunch } from '@tarojs/taro' import './app.scss' function App({ children }: PropsWithChildren<any>) { useLaunch(() => { console.log('App launched.') }) // children 是将要会渲染的页面 return children } export default App