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'
- [Vuejs]-V-for and v-if listing ALL of array onclick, supposed to list info on the only array clicked
Source:stackexchange.com