Use the md-chip template instead of md-chip and use ng-model instead of ng-repeat .. as below.
<md-chips ng-model="user.skills" readonly="true">
<md-chip-template>{{$chip.skill_title}}</md-chip-template>
</md-chips>
It should work as your expectation.
source
share