Skip to content

Commit

Permalink
fix: Fix Vue warnings related to component names
Browse files Browse the repository at this point in the history
  • Loading branch information
Hanziness committed Jul 10, 2021
1 parent 9fad494 commit 0497ec8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

<script>
export default {
name: 'LayoutDefault'
}
</script>
1 change: 1 addition & 0 deletions layouts/error.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

<script>
export default {
name: 'LayoutError',
layout: 'empty',
props: {
error: {
Expand Down
1 change: 1 addition & 0 deletions layouts/timer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

<script>
export default {
name: 'LayoutTimer',
components: {
},
data () {
Expand Down
1 change: 1 addition & 0 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ import IconGithub from 'vue-material-design-icons/Github.vue'
import IconRepeat from 'vue-material-design-icons/Repeat.vue'
export default {
name: 'PageIndex',
components: {
IconLightBulb, IconCheck, IconHand, IconGithub, IconRepeat
},
Expand Down
1 change: 1 addition & 0 deletions pages/setup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
import { AvailableTimers } from '@/store/settings'
export default {
name: 'PageSetup',
data () {
return {
step: 0,
Expand Down
1 change: 1 addition & 0 deletions pages/timer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
// import LazyHydrate from 'vue-lazy-hydration'
export default {
name: 'PageTimer',
components: {
Ticker: () => import(/* webpackChunkName: "ticker", webpackMode: "eager" */ '@/components/ticker.vue'),
ScheduleDisplay: () => import(/* webpackChunkName: "schedule", webpackPrefetch: true */ '@/components/schedule/scheduleDisplay.vue'),
Expand Down

0 comments on commit 0497ec8

Please sign in to comment.