[Vuejs]-Vue component is not visible

0👍

Remove the {} from the import.

The {} is used for destructuring assignment which is unnecessary for your case.

Just use

import Billings from '../components/Billings.vue'

Leave a comment