我有来自TradingView的嵌入代码代表图表:
<script src="https://s3.tradingview.com/tv.js"></script>
<script>
new TradingView.widget({
"width": 980,
"height": 610,
"symbol": "NASDAQ:AAPL",
"interval": "D",
"timezone": "Etc/UTC",
"theme": "Light",
"style": "1",
"locale": "en",
"toolbar_bg": "#f1f3f6",
"enable_publishing": false,
"allow_symbol_change": true,
"hideideas": true
});
</script>
我想在Vuejs单文件组件中插入此图表,我该怎么做?