forked from jsnbuchanan/crowd-funder-for-time-pwa
TypeScript classes added
This commit is contained in:
@@ -3,3 +3,13 @@
|
|||||||
<h1>This is an about page</h1>
|
<h1>This is an about page</h1>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { Options, Vue } from "vue-class-component";
|
||||||
|
|
||||||
|
@Options({
|
||||||
|
components: {
|
||||||
|
},
|
||||||
|
})
|
||||||
|
export default class AboutView extends Vue {}
|
||||||
|
</script>
|
||||||
|
|||||||
@@ -73,3 +73,13 @@
|
|||||||
</dialog>
|
</dialog>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { Options, Vue } from "vue-class-component";
|
||||||
|
|
||||||
|
@Options({
|
||||||
|
components: {
|
||||||
|
},
|
||||||
|
})
|
||||||
|
export default class AccountViewView extends Vue {}
|
||||||
|
</script>
|
||||||
|
|||||||
@@ -31,3 +31,13 @@
|
|||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { Options, Vue } from "vue-class-component";
|
||||||
|
|
||||||
|
@Options({
|
||||||
|
components: {
|
||||||
|
},
|
||||||
|
})
|
||||||
|
export default class ConfirmContactView extends Vue {}
|
||||||
|
</script>
|
||||||
|
|||||||
@@ -48,3 +48,13 @@
|
|||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { Options, Vue } from "vue-class-component";
|
||||||
|
|
||||||
|
@Options({
|
||||||
|
components: {
|
||||||
|
},
|
||||||
|
})
|
||||||
|
export default class ContactScanView extends Vue {}
|
||||||
|
</script>
|
||||||
|
|||||||
@@ -84,3 +84,13 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { Options, Vue } from "vue-class-component";
|
||||||
|
|
||||||
|
@Options({
|
||||||
|
components: {
|
||||||
|
},
|
||||||
|
})
|
||||||
|
export default class DiscoverView extends Vue {}
|
||||||
|
</script>
|
||||||
|
|||||||
@@ -18,4 +18,14 @@
|
|||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { Options, Vue } from "vue-class-component";
|
||||||
|
|
||||||
|
@Options({
|
||||||
|
components: {
|
||||||
|
},
|
||||||
|
})
|
||||||
|
export default class ImportAccountView extends Vue {}
|
||||||
|
</script>
|
||||||
|
|||||||
@@ -15,9 +15,18 @@
|
|||||||
<div class="mt-8">
|
<div class="mt-8">
|
||||||
<button type="button" class="block w-full text-center text-lg font-bold uppercase bg-blue-600 text-white px-2 py-3 rounded-md mb-2">Save Changes</button>
|
<button type="button" class="block w-full text-center text-lg font-bold uppercase bg-blue-600 text-white px-2 py-3 rounded-md mb-2">Save Changes</button>
|
||||||
<!-- SHOW ME instead while processing saving changes -->
|
<!-- SHOW ME instead while processing saving changes -->
|
||||||
<!-- <button type="button" class="block w-full text-center text-lg font-bold uppercase bg-blue-600 text-white px-2 py-3 rounded-md mb-2">Processing… <i class="fa-solid fa-spinner fa-spin-pulse" disabled></i></button> -->
|
|
||||||
<button type="button" class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md">Cancel</button>
|
<button type="button" class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md">Cancel</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { Options, Vue } from "vue-class-component";
|
||||||
|
|
||||||
|
@Options({
|
||||||
|
components: {
|
||||||
|
},
|
||||||
|
})
|
||||||
|
export default class NewEditAccountView extends Vue {}
|
||||||
|
</script>
|
||||||
|
|||||||
@@ -37,3 +37,13 @@
|
|||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { Options, Vue } from "vue-class-component";
|
||||||
|
|
||||||
|
@Options({
|
||||||
|
components: {
|
||||||
|
},
|
||||||
|
})
|
||||||
|
export default class NewEditCommitmentView extends Vue {}
|
||||||
|
</script>
|
||||||
|
|||||||
@@ -36,3 +36,13 @@
|
|||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { Options, Vue } from "vue-class-component";
|
||||||
|
|
||||||
|
@Options({
|
||||||
|
components: {
|
||||||
|
},
|
||||||
|
})
|
||||||
|
export default class NewEditProjectView extends Vue {}
|
||||||
|
</script>
|
||||||
|
|||||||
@@ -73,3 +73,13 @@
|
|||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { Options, Vue } from "vue-class-component";
|
||||||
|
|
||||||
|
@Options({
|
||||||
|
components: {
|
||||||
|
},
|
||||||
|
})
|
||||||
|
export default class ProjectViewView extends Vue {}
|
||||||
|
</script>
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<section
|
<section id="Content" class="p-6 pb-24 min-h-screen flex flex-col justify-center">
|
||||||
id="Content"
|
|
||||||
class="p-6 pb-24 min-h-screen flex flex-col justify-center"
|
|
||||||
>
|
|
||||||
<!-- Heading -->
|
<!-- Heading -->
|
||||||
<h1 id="ViewHeading" class="text-4xl text-center font-light pt-4 mb-8">
|
<h1 id="ViewHeading" class="text-4xl text-center font-light pt-4 mb-8">
|
||||||
Start Here
|
Start Here
|
||||||
@@ -12,16 +9,19 @@
|
|||||||
<p class="text-center text-xl mb-4 font-light">
|
<p class="text-center text-xl mb-4 font-light">
|
||||||
Do you already have an identity to import?
|
Do you already have an identity to import?
|
||||||
</p>
|
</p>
|
||||||
<a
|
<a href="account-edit.html" class="block w-full text-center text-lg font-bold uppercase bg-blue-600 text-white px-2 py-3 rounded-md mb-2">No</a>
|
||||||
href="account-edit.html"
|
<a href="account-import.html" class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md">Yes</a
|
||||||
class="block w-full text-center text-lg font-bold uppercase bg-blue-600 text-white px-2 py-3 rounded-md mb-2"
|
|
||||||
>No</a
|
|
||||||
>
|
|
||||||
<a
|
|
||||||
href="account-import.html"
|
|
||||||
class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md"
|
|
||||||
>Yes</a
|
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { Options, Vue } from "vue-class-component";
|
||||||
|
|
||||||
|
@Options({
|
||||||
|
components: {
|
||||||
|
},
|
||||||
|
})
|
||||||
|
export default class StartView extends Vue {}
|
||||||
|
</script>
|
||||||
|
|||||||
Reference in New Issue
Block a user