如何通过`vscodeUri`

时间:2018-07-05 23:52:58

标签: visual-studio-code vscode-extensions

我的源代码结构是:

PROJECT_ROOT/src/index.js
PROJECT_ROOT/resources/file.svg

我想加载file.svg作为资源以显示在树项上。在index.js中,我使用以下代码加载资源:

const resource = Uri.parse('file:../resources/database.png')
// return the tree item
return {resourceUri: resource}

树项将呈现文件名,而不是实际的图标文件。如何从相对路径加载资源?

0 个答案:

没有答案