- 创建一个Vue项目:首先你需要在电脑上安装Node.js和Vue CLI。安装完成后,在终端中运行以下命令创建一个Vue项目:
vue create stock-display
- 安装所需的依赖项:在终端中进入项目文件夹并运行以下命令安装所需的依赖项:
cd stock-display
npm install axios vue-chartjs chart.js --save
- 获取股票数据:在Vue项目中,你可以使用Axios库获取后台API提供的数据。这里,你可以调用Yahoo Finance API来获取股票数据。在Vue项目中,将以下代码添加到App.vue组件中:
<template>
<div class="container">
<h1>股票展示页面</h1>
<canvas ref="chart"></canvas>
</div>
</template>
<script>
import axios from 'axios'
import { Line } from 'vue-chartjs'
export default {
extends: Line,
mounted () {
axios.get('https://query1.finance.yahoo.com/v8/finance/chart/AAPL')
.then(response => {
this.renderChart({
labels: response.data.chart.result[0].timestamp.map(date => new Date(date * 1000).toLocaleDateString()),
datasets: [
{
label: 'AAPL',
borderColor: '#FC2525',
pointBackgroundColor: 'white',
borderWidth: 1,
pointBorderColor: 'white',
backgroundColor: 'rgba(252, 37, 37, 0.5)',
data: response.data.chart.result[0].indicators.quote[0].close,
},
],
},
{
responsive: true,
maintainAspectRatio: false,
legend: {
display: false
}
})
})
},
}
</script>
在这个示例中,我们调用了Yahoo Finance API来获取苹果公司(AAPL)的股票价格数据,并使用Vue Chart.js将其绘制在图表中。
- 运行项目:完成上述步骤后,在终端中运行以下命令启动Vue开发服务器:
npm run serve
- 查看结果:在浏览器中打开http://localhost:8080并查看结果。
这只是一个简单的示例,你可以根据需要自行修改代码来展示不同的股票数据,并添加其他功能和视觉效果。