/* eslint-disable no-new */ /* global Vue */ /* global MilestoneSelect */ module.exports = Vue.extend({ name: 'filter-milestone', props: { milestonePath: { type: String, required: true, }, }, mounted() { new MilestoneSelect(null, this.$refs.dropdown); }, template: ` `, });