- fix: starting the app it doesn't loaded the SingleTodo correctly...
the problem was:
import { SingleTodo } from '@components' // doesn't work:
Resolve :
import { SingleTodo } from '../../SingleTodo' // correct!
This commit is contained in:
@@ -2,7 +2,7 @@ import Vue from 'vue'
|
||||
import { Component } from 'vue-property-decorator'
|
||||
import { GlobalStore } from '@store'
|
||||
|
||||
import { Logo } from '@components'
|
||||
import { Logo } from '../../components/logo'
|
||||
|
||||
@Component({
|
||||
components: { Logo }
|
||||
|
||||
Reference in New Issue
Block a user