Upgrades to eslint-plugin-vue 7.5.0 (#3685)

This commit is contained in:
Shefali Joshi
2021-02-12 13:46:53 -08:00
committed by GitHub
parent abb1a5c75b
commit a9be9f1827
69 changed files with 126 additions and 116 deletions

View File

@ -43,15 +43,15 @@ export default function LADTableViewProvider(openmct) {
components: {
LadTableComponent: LadTable
},
provide: {
openmct
},
data: () => {
return {
domainObject,
objectPath
};
},
provide: {
openmct
},
template: '<lad-table-component :domain-object="domainObject" :object-path="objectPath"></lad-table-component>'
});
},

View File

@ -48,10 +48,10 @@
import LadRow from './LADRow.vue';
export default {
inject: ['openmct'],
components: {
LadRow
},
inject: ['openmct'],
props: {
domainObject: {
type: Object,

View File

@ -57,10 +57,10 @@
import LadRow from './LADRow.vue';
export default {
inject: ['openmct', 'domainObject'],
components: {
LadRow
},
inject: ['openmct', 'domainObject'],
data() {
return {
ladTableObjects: [],