[Vuejs]-Vuejs, import component file issues

2👍

import dropdown from '../dropdown.vue'
import formbutton from '../form_button.vue'

Should be the correct way to import these files, using ../ goes down one directory which will take you from the concertina_form directory to the vue_form directory.

👤Geenzo

Leave a comment