Files
luos/resources/assets/js/home/TaskMetrics/defaultMixins.js

21 lines
360 B
JavaScript
Raw Normal View History

2021-07-30 20:18:11 +00:00
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();
},
},
}
},
created: function () {
},
methods: {
}
}