src_js/iconolab-bundle/src/components/editor/mixins/save.js
author duong tam kien <tk@deveha.com>
Tue, 28 Feb 2017 17:19:04 +0100
changeset 404 38dfe91ee69a
parent 320 81945eedc63f
permissions -rw-r--r--
switches cursor to `crosshair` in free form mode

export default {
    methods: {
        save: function(data) {

            Object.assign(data, {
                fragment: this.toSVGPath()
            });

            this.$parent.$emit('save', data);
        }
    }
}