- 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:
Paolo Arena
2019-01-30 01:05:31 +01:00
parent 818a7a4289
commit 2515bb598e
14 changed files with 45 additions and 17 deletions

View File

@@ -1,7 +1,7 @@
import Vue from 'vue'
import { Component, Watch } from 'vue-property-decorator'
import { SingleCat } from '@components'
import { SingleCat } from '../SingleCat'
import { ICategory } from '@src/model'