1 uts 插件工程目录 common 新建 test.uts
export function test(str : string) : string {
return str;
}
import {
test
} from "@/uni_modules/xxxx";
2 utssdk 目录下 新建 index.uts
export function test2(str : string) : string {
return str;
}
import {
test2
} from "@/uni_modules/xxxx";
现象
test 无法导入,无法执行
test2 可以导入,并可以执行
问题
1 是否支持直接导入common
2 common 的作用是什么
3 有没有示例代码 uts-hello 未找到相关示例
0 个回复