1lch2 / CS14_Cybersecurity_Incident_Dashboard_frontend

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cybersecurity Incident Dashboard - frontend

This is the frontend repository of capstone project CS14.

Setup

Install NodeJS

Make sure you install NodeJS first!

https://nodejs.org/zh-cn/download/

Install Vue CLI

Install dependencies

In your project directory

npm install

Compiles and hot-reloads for development

npm run serve

The frontend will run on port 8080.

Chart data format

{
    "columns": ["column1", "column2"],  // Field name
    "rows": [                           // Data rows
        {
            "column1": 1001,
            "column2": 2001,
            "column3": "text"
        },
        {
            "column1": 1001,
            "column2": 2001,
            "column3": "text"
        }    
    ]
}

Reference

About


Languages

Language:Vue 90.7%Language:JavaScript 8.4%Language:HTML 0.9%