Files
luos/resources/assets/js/home/TaskMetrics/defaultMixins.js
2021-08-27 21:29:54 +00:00

16 lines
311 B
JavaScript

import _ from "lodash";
import api from "../../api/index";
export default {
data() {
let that = this;
return {
newCase: {
title: this.$i18n.t("ID_NEW_CASE"),
class: "btn-success",
onClick: () => {
this.$refs["newRequest"].show();
},
},
}
}
}