i want to format this date <b-button variant="outline-primary">{{getContract.contract_data.start_date}} | {{getContract.contract_data.end_date}}</b-button> Now it looks like this: 
I want it to be seen like this: 
how can i do?
I solved it with MomentJS: Convert date format in Javascript using VueJS
Date()object and usingtoLocaleStringto format it any way you like.contract_data'sstart_dateandend_dateare unix timestamps not strings, convert it to a date object, i.e.new Date(getContract.contract_data.start_date), then read this: developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/…