Script
script 类似微信小程序的 wxs 标签,支持引用各种小程序的 xs 文件 只能在 CompileMode 中使用
支持情况:
类型
ComponentType<ScriptProps>
示例代码
- React
import { Component } from 'react'
import { View, Script } from '@tarojs/components'
export function Index () {
return (
<View compileMode>
<Script src="./logic.wxs" module="logic"></Script>
<Text>Hello, {logic.name}!</Text>
</View>
)
}
ScriptProps
参数 | 类型 | 说明 |
---|---|---|
src | string | xs 文件的相对路径 |
module | string | xs 模块名 |
API 支持度
API | 微信小程序 | 百度小程序 | 支付宝小程序 | 抖音小程序 | QQ 小程序 | 京东小程序 | H5 | React Native | Harmony |
---|---|---|---|---|---|---|---|---|---|
ScriptProps.src | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | |||
ScriptProps.module | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ |