You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

vueapp.js 689B

123456789101112131415161718192021222324252627282930313233
  1. var app = new Vue({
  2. delimiters: ['${', '}'],
  3. el: '#lc-product-family-edit',
  4. data: {
  5. currentSection: 'general',
  6. unit: null,
  7. sectionsArray: [
  8. {
  9. name: 'general',
  10. nameDisplay: 'Général'
  11. },
  12. {
  13. name: 'price',
  14. nameDisplay: 'Prix de commande'
  15. },
  16. {
  17. name: 'product',
  18. nameDisplay: 'Déclinaisons'
  19. }
  20. ]
  21. },
  22. methods: {
  23. changeSection: function (section) {
  24. this.currentSection = section.name;
  25. }
  26. },
  27. mounted() {
  28. //loadCkEditor();
  29. }
  30. });