export default {
props: {
prospectId: Number
},
data: function(){
return {
targetDate: null,
categoryOptions: [],
visitCategoryId: null
}
},
created: function(){
this.set_category_options();
},
methods : {
set_category_options: async function() {
const res = await axios.get('/visit_categories.json');
this.categoryOptions = res.data;
}
}
0 件のコメント:
コメントを投稿