Having a basic list presented in the django context.
rlinks: ['test1', 'test2'', 'test3']
var v_root = new Vue({
delimiters: [ '[[', ']]' ],
el: '#vue-main',
data: {
job_execs: [],
rlinks: '{{ rlinks }}',
Upon console.log with vuejs, the output is:
['test1', 'test2']
Is there a way to transform the above into a javascript list without altering the django side? I'd prefer a solution based on javascript instead of django if possible.