-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Shim doesn't seem to work; replace (vuejs/vetur#1187)
- Loading branch information
Showing
8 changed files
with
92 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,61 @@ | ||
<template> | ||
<div id="app"> | ||
<body class="grey lighten-2"> | ||
<div class="container"> | ||
<div class="row" style="margin-bottom: 0;"> | ||
|
||
<div class="col P12 L6"> <!-- this is the scrolly column on the left --> | ||
<Title></Title> | ||
|
||
<!-- START INPUT CARD --> | ||
<TextInput></TextInput> | ||
<!-- END INPUT CARD --> | ||
|
||
<display-svg class="hide-on-landscape"></display-svg> | ||
<downloads class="hide-on-landscape"></downloads> | ||
|
||
<!-- START OPTIONS CARD --> | ||
<Options></Options> | ||
<!-- END OPTIONS CARD --> | ||
|
||
<!-- START donate nagger --> | ||
<Footer></Footer> | ||
<!-- END donate nagger --> | ||
|
||
</div> | ||
|
||
<div class="col P12 L6 hide-on-portrait valign-wrapper" style="height: 100vh;"> | ||
<div class="targset" style="width: 35%; position: fixed;"> | ||
<!-- START IMAGE CARD --> | ||
<RenderedImage></RenderedImage> | ||
<!-- END IMAGE CARD --> | ||
|
||
<!-- START DOWNLOAD CARD --> | ||
<Downloads></Downloads> | ||
<!-- END DOWNLOAD CARD --> | ||
</div> | ||
<GithubCorner></GithubCorner> | ||
<body class="grey lighten-2"> | ||
<div class="container"> | ||
<div class="row" style="margin-bottom: 0;"> | ||
|
||
<div class="col P12 L6"> <!-- this is the scrolly column on the left --> | ||
<Title></Title> | ||
|
||
<!-- START INPUT CARD --> | ||
<TextInput></TextInput> | ||
<!-- END INPUT CARD --> | ||
|
||
<display-svg class="hide-on-landscape"></display-svg> | ||
<downloads class="hide-on-landscape"></downloads> | ||
|
||
<!-- START OPTIONS CARD --> | ||
<Options></Options> | ||
<!-- END OPTIONS CARD --> | ||
|
||
<!-- START donate nagger --> | ||
<Footer></Footer> | ||
<!-- END donate nagger --> | ||
|
||
</div> | ||
|
||
<div class="col P12 L6 hide-on-portrait valign-wrapper" style="height: 100vh;"> | ||
<div class="targset" style="width: 35%; position: fixed;"> | ||
<!-- START IMAGE CARD --> | ||
<RenderedImage></RenderedImage> | ||
<!-- END IMAGE CARD --> | ||
|
||
<!-- START DOWNLOAD CARD --> | ||
<Downloads></Downloads> | ||
<!-- END DOWNLOAD CARD --> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</body> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import Corner from '@/components/Corner.vue' | ||
import Header from '@/components/Header.vue' | ||
import InputOutput from '@/components/IO.vue' | ||
import Ruleset from '@/components/Ruleset.vue' | ||
import SaveRules from '@/components/SaveRules.vue' | ||
import Footer from '@/components/Footer.vue' | ||
export default { | ||
import Vue from "vue" | ||
import Downloads from '@/components/Downloads.vue' | ||
import GithubCorner from '@/components/GithubCorner.vue' | ||
import Options from '@/components/Options.vue' | ||
import RenderedImage from '@/components/RenderedImage.vue' | ||
import TextInput from '@/components/TextInput.vue' | ||
import Title from '@/components/Title.vue' | ||
export default Vue.extend({ | ||
name: "App", | ||
components: { | ||
Corner, Footer, Header, InputOutput, Ruleset, SaveRules | ||
Downloads, GithubCorner, Options, RenderedImage, TextInput, Title | ||
}, | ||
} | ||
}) | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,9 @@ | |
</div> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import Vue from "vue" | ||
export default Vue.extend({}) | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,9 @@ | |
</div> | ||
</footer> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import Vue from "vue" | ||
export default Vue.extend({}) | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -307,3 +307,9 @@ | |
</ul> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import Vue from "vue" | ||
export default Vue.extend({}) | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,3 +31,9 @@ | |
</svg> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import Vue from "vue" | ||
export default Vue.extend({}) | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,3 +20,9 @@ | |
</div> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import Vue from "vue" | ||
export default Vue.extend({}) | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,9 @@ | |
</svg> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import Vue from "vue" | ||
export default Vue.extend({}) | ||
</script> |