Vscode+julia插件IDE,plot函数无法显示图

我是julia初学者,安装了Plots库,范例代码如下:

using Plots
x = 1:10; y = rand(10); # These are the plotting data
plot(x,y)

但运行此段代码无法显示结果图
image

是不是没设置backend?
比如

using Plots
pyplot()  # or plotly()

是有问题,到REPL里用include调用这个文件就可以显示出来