charting-library-examples/vuejs
2024-07-31 15:04:09 +01:00
..
public Update Vue example for v20.033 2022-01-12 12:47:29 +00:00
src update Vue 2 example 2023-03-14 18:00:28 +00:00
.eslintignore Update vuejs example part 2 2021-02-01 11:40:14 +03:00
.gitignore update Vue 2 example 2023-03-14 18:00:28 +00:00
copy_charting_library_files.sh Update Vue example for v20.033 2022-01-12 12:47:29 +00:00
index.html Update vuejs/index.html 2023-03-14 18:10:26 +00:00
package-lock.json CL-1977: Updating vuejs 2024-07-31 15:04:09 +01:00
package.json CL-1977: Updating vuejs 2024-07-31 15:04:09 +01:00
README.md CL-1977: Updating vuejs 2024-07-31 15:04:09 +01:00
vite.config.js CL-1977: Updating vuejs 2024-07-31 15:04:09 +01:00

TradingView Charting Library and Vue.js 2 Integration Example

⚠️ Note: This example is for Vue 2.

The latest supported version of the charting library for these examples is v28.0.0.

How to start

  1. Check that you can view https://github.com/tradingview/charting_library/. If you do not have access then you can request access to this repository here.
  2. Install dependencies npm install.
  3. Copy the charting library files
    1. If you are able to run bash scripts then the copy_charting_library_files.sh script can be used to copy the current stable version's files.
    2. If you are not able to run bash scripts then do the following:
      1. Copy the charting_library folder from https://github.com/tradingview/charting_library/ to /public folder.
      2. Copy the datafeeds folder from https://github.com/tradingview/charting_library/ to /public.
  4. Run npm run dev. It will build the project and open a default browser with the Charting Library.
  5. Run npm run build when you are ready to build the Vue application for deployment.

What is Charting Library

Charting Library is a standalone solution for displaying charts. This free, downloadable library is hosted on your servers and is connected to your data feed to be used in your website or app. Learn more and download.

What is Vue.js

Vue is a progressive framework for building user interfaces. Unlike other monolithic frameworks, Vue is designed from the ground up to be incrementally adoptable. The core library is focused on the view layer only, and is easy to pick up and integrate with other libraries or existing projects.