[Vuejs]-How to store wishlist product on server side using api (Magento + Vue)?

-1๐Ÿ‘

1.Copy all content of this url insaid you custom module

/Custom/Module/view/frontend/web/js/vue.js

2.Configure requirejs-config.js

    /Custom/Module/view/frontend/requirejs-config.js

var config = {
   map: {
       '*': {
           vue: 'Custom_Module/js/vue'>             
       }
   } };

3.And to use it:

define([
    'jquery',
    'vue'
], function ($, Vue) {
    "use strict";
    // code...
});

Leave a comment