|
123456789101112131415161718192021222324252627282930313233 |
- 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();
- }
-
- });
-
|