Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10,404 changes: 10,363 additions & 41 deletions Homework2/Vue-Skeleton/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Homework2/Vue-Skeleton/src/views/pages/home.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div>
<h1>Welcome Home</h1>
<h1>Welcome to my world!</h1>
<BarChart v-if="dataExists" :myBarchartData="myBarData" />
</div>
</template>
Expand Down
216 changes: 216 additions & 0 deletions Homework2/datasets/CO2_emission.csv

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions Homework2/yunqin/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Dashboard Preview
![](./preview.png)

# Install Dependencies
Assuming you have node.js installed. (If not go do that :) )
Install [Node](https://nodejs.org/en/).

Install from the package.json via terminal.
`npm i`

To install additional packages based on your needs
`npm install <package-name>`

## Run application
`npm start`

The dashboard was developed and ran on a 13.3 inch (2560 × 1600) screen, displayed by Chrome with 100% Zoom.
5 changes: 5 additions & 0 deletions Homework2/yunqin/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"include": [
"./src/**/*"
]
}
Loading