[Vuejs]-How connectly import several variables from other file (Vue.JS)?

0👍

Just change your export to export {colors, config} in your config.js

You can then import it like this (you have it already implemented):

import {config, colors} from '@/../config.js'

Leave a comment