From 58afd0f0ac7d02527e65e8e2c5873c6be8ff72b1 Mon Sep 17 00:00:00 2001 From: thislooksfun Date: Tue, 10 Sep 2019 16:04:39 -0500 Subject: [PATCH] Start work on TalentRanks stage --- .../newCharacterWizard/TalentRanks.vue | 98 +++++++++++++++++++ src/components/newCharacterWizard/index.vue | 5 +- 2 files changed, 102 insertions(+), 1 deletion(-) create mode 100644 src/components/newCharacterWizard/TalentRanks.vue diff --git a/src/components/newCharacterWizard/TalentRanks.vue b/src/components/newCharacterWizard/TalentRanks.vue new file mode 100644 index 00000000..c61370a1 --- /dev/null +++ b/src/components/newCharacterWizard/TalentRanks.vue @@ -0,0 +1,98 @@ + + + + + diff --git a/src/components/newCharacterWizard/index.vue b/src/components/newCharacterWizard/index.vue index 72454a28..2f5a95e8 100644 --- a/src/components/newCharacterWizard/index.vue +++ b/src/components/newCharacterWizard/index.vue @@ -2,6 +2,7 @@

Character Creation Wizard

+ (Stage: {{ stage }})
@@ -23,7 +24,7 @@
- +
@@ -66,11 +67,13 @@ import decorate from "@/charDecorator"; import BasicInfo from "./BasicInfo"; import AttributePoints from "./AttributePoints"; +import TalentRanks from "./TalentRanks"; export default { components: { BasicInfo, AttributePoints, + TalentRanks, }, data() { const uuid = this.$route.params.uuid;