// ---------------------------------------------------------------------------------
//
// Component: Alert popup
//
// Input Props:
// - type: what to do if clicked on ok
// - id
//
// Ovo je test za alert
//
Vue.component('input-login',
{
props:
[
'value', 'type', 'id', 'name', 'placeholder','required', 'disabled', 'pattern', 'classs'
],
data: function ()
{
return {
cModelText: null
}
},
computed:
{
},
mounted: function ()
{
this.cModelText = this.value;
},
methods:
{
ValueChange: function(e)
{
this.$emit('input', this.cModelText);
}
},
watch:
{
value (val)
{
this.value = val;
this.cModelText = val;
},
},
template: '
'
});