Adrien 3 年之前
父節點
當前提交
3cbd4aec25
共有 5 個文件被更改,包括 5 次插入5 次删除
  1. +2
    -2
      src/components/Battleground.vue
  2. +1
    -1
      src/components/Objective.vue
  3. +0
    -0
      src/components/TheBattlegroundSelector.vue
  4. +0
    -0
      src/components/Timer.vue
  5. +2
    -2
      src/router/index.js

+ 2
- 2
src/components/Battleground.vue 查看文件

@@ -36,8 +36,8 @@

<script>
import BATTLEGROUNDS from '@/gameInfos/battlegrounds'
import Timer from '@/components/Battleground/Timer'
import Objective from '@/components/Battleground/Objective'
import Timer from '@/components/Timer'
import Objective from '@/components/Objective'

export default {
name: 'Battleground',


src/components/Battleground/Objective.vue → src/components/Objective.vue 查看文件

@@ -25,7 +25,7 @@
</style>

<script>
import Timer from '@/components/Battleground/Timer'
import Timer from '@/components/Timer'
export default {
name: 'Objective',
props: {

src/components/BattlegroundSelector.vue → src/components/TheBattlegroundSelector.vue 查看文件


src/components/Battleground/Timer.vue → src/components/Timer.vue 查看文件


+ 2
- 2
src/router/index.js 查看文件

@@ -2,7 +2,7 @@ import Vue from 'vue'
import Router from 'vue-router'

import Hello from '@/components/Hello'
import BattlegroundSelector from '@/components/BattlegroundSelector'
import TheBattlegroundSelector from '@/components/TheBattlegroundSelector'
import Battleground from '@/components/Battleground'

Vue.use(Router)
@@ -16,7 +16,7 @@ export default new Router({
},
{
path: '/battlegrounds',
component: BattlegroundSelector
component: TheBattlegroundSelector
},
{
path: '/battleground/:battlegroundId',


Loading…
取消
儲存