diff --git a/src/components/TableFormatters/DetailFormatter.vue b/src/components/TableFormatters/DetailFormatter.vue index 9304f11dd..0bdfb0525 100644 --- a/src/components/TableFormatters/DetailFormatter.vue +++ b/src/components/TableFormatters/DetailFormatter.vue @@ -25,8 +25,16 @@ export default { data() { const formatterArgs = Object.assign(this.formatterArgsDefault, this.col.formatterArgs) return { - formatterArgs: formatterArgs, - iTitle: formatterArgs.getTitle({ col: this.col, row: this.row, cellValue: this.cellValue }) + formatterArgs: formatterArgs + } + }, + computed: { + iTitle() { + return this.formatterArgs.getTitle({ + col: this.col, + row: this.row, + cellValue: this.cellValue + }) } }, methods: { diff --git a/src/views/assets/Asset/NodeAssetsUpdateDialog.vue b/src/views/assets/Asset/NodeAssetsUpdateDialog.vue index dc3e3ce41..ee52737c6 100644 --- a/src/views/assets/Asset/NodeAssetsUpdateDialog.vue +++ b/src/views/assets/Asset/NodeAssetsUpdateDialog.vue @@ -95,7 +95,6 @@ export default { computed: { iVisible: { set(val) { - console.log('set val: ', val) this.$emit('update:visible', val) }, get() {