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
}
Source:stackexchange.com