// --------------------------------------------------------------------------------- // // Component: Modal popup // // Input Props: // // // ovo je {{viewInfo.page_id}}test



za modal //
// Vue.component('modal', { props: [ 'width', 'id', 'title', 'mandatory' ], computed: { }, mounted: function () { var self = this; $(document).on("keyup", function (event) { if(event.which === 27 && self.mandatory == undefined) { $('#'+self.id).fadeOut(100); } }); }, methods: { Close: function() { if(this.mandatory == undefined) { $('#'+this.id).fadeOut(200); } } }, template: '' });