Skip to content

Commit

Permalink
First version of the swiss system app.
Browse files Browse the repository at this point in the history
The app is raw but works. Carefull when used on Chrome, the edmonds-blossom extension
requires some modifications to fix any undeclared variables. See the corresponding
issue: mattkrick/EdmondsBlossom#1
  • Loading branch information
joudinet committed Jul 7, 2020
1 parent 31f2242 commit 16de16e
Show file tree
Hide file tree
Showing 7 changed files with 318 additions and 65 deletions.
7 changes: 6 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "swiss-contest",
"name": "swiss-system",
"version": "0.1.0",
"private": true,
"scripts": {
Expand All @@ -9,6 +9,7 @@
},
"dependencies": {
"core-js": "^3.6.5",
"edmonds-blossom": "^1.0.0",
"vue": "^2.6.11"
},
"devDependencies": {
Expand Down
Binary file modified public/favicon.ico
Binary file not shown.
8 changes: 3 additions & 5 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
<template>
<div id="app">
<img alt="Vue logo" src="./assets/logo.png">
<HelloWorld msg="Welcome to Your Vue.js App"/>
<Swiss />
</div>
</template>

<script>
import HelloWorld from './components/HelloWorld.vue'
import Swiss from './components/Swiss.vue'
export default {
name: 'App',
components: {
HelloWorld
Swiss
}
}
</script>
Expand All @@ -23,6 +22,5 @@ export default {
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>
58 changes: 0 additions & 58 deletions src/components/HelloWorld.vue

This file was deleted.

Loading

0 comments on commit 16de16e

Please sign in to comment.