var app = new Vue({ delimiters: ['${', '}'], el: '#lc-product-family-edit', data: { currentSection: 'general', unit: null, sectionsArray: [ { name: 'general', nameDisplay: 'Général' }, { name: 'price', nameDisplay: 'Prix de commande' }, { name: 'product', nameDisplay: 'Déclinaisons' } ] }, methods: { changeSection: function (section) { this.currentSection = section.name; } }, mounted() { //loadCkEditor(); } });