Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/phiphan148/TGIFVueApp
Browse files Browse the repository at this point in the history
  • Loading branch information
phiphan148 committed Sep 12, 2018
2 parents 197f6d9 + acbcbb0 commit 6e87d02
Show file tree
Hide file tree
Showing 12 changed files with 8,371 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/components/DataTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
</tr>
</thead>
<tbody>
<!--<tr v-for="mem in displayParty">-->
<tr v-for="mem in senator">
<td>{{mem.fullname}}</td>
<td>{{mem.party}}</td>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="card-footer text-center">
<p>2016 TGIF</p>
<p>2018 TGIF</p>
</div>
</template>

Expand Down
5 changes: 5 additions & 0 deletions tgif/.babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"presets": [
["env", { "modules": false }]
]
}
12 changes: 12 additions & 0 deletions tgif/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.DS_Store
node_modules/
dist/
npm-debug.log
yarn-error.log

# Editor directories and files
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
18 changes: 18 additions & 0 deletions tgif/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# tgif

> tgif
## Build Setup

``` bash
# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build
```

For detailed explanation on how things work, consult the [docs for vue-loader](http://vuejs.github.io/vue-loader).
12 changes: 12 additions & 0 deletions tgif/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>tgif</title>
<link rel="stylesheet" href="/dist/main.css">
</head>
<body>
<div id="app"></div>
<script src="/dist/build.js"></script>
</body>
</html>
Loading

0 comments on commit 6e87d02

Please sign in to comment.