# isPluginFileExist

判断插件文件是否存在(^3.13.0版本支持)

# 请求参数

Prop Type Required Default Description
modules Array Y - 模块名称数组

# 参数代码示例

this.$bridge.isPluginFileExist({
    modules: ['language', 'otherModule']
}).then(res => {
    // res 包含存在的模块列表
    console.log(res)
})
1
2
3
4
5
6