[Vuejs]-Vue.js / import export ES6 issue with const

2👍

The component doesn’t show your variable settings during render template, because you don’t mount it in component (in other words this.settings === undefined).
You should write in created() component hook:

created() {
    this.settings = settings
}
👤Sergey

Leave a comment