我想导出该功能。
这是我的代码
var ProductDelete = Vue.extend({
template: '#item-delete',
data: function () {
return {item: findProduct(this.$route.params.product_id)};
},
methods: {
deleteProduct: function () {
itemlist.splice(findProductKey(this.$route.params.product_id), 1);
router.go('/');
}
}
});
我需要写他的数据功能
export default {
data() {
return {
}
}
}
怎么做?