|
|
@ -109,8 +109,8 @@ |
|
|
|
<template v-if="col.name === '_sortNo_'"> |
|
|
|
{{ scope.rowIndex + 1 }} |
|
|
|
</template> |
|
|
|
<template v-else-if="col.value && typeof col.value === 'object' && col.value.type && col.value._vuecomp_"> |
|
|
|
<component :is="col.value.type" v-bind="col.value.props"></component> |
|
|
|
<template v-else-if="col.value && typeof col.value === 'object' && col.value.componentsType"> |
|
|
|
<component :is="col.value.componentsType" v-bind="col.value.attrs"></component> |
|
|
|
</template> |
|
|
|
<template v-else> |
|
|
|
{{ col.value }} |
|
|
@ -122,8 +122,8 @@ |
|
|
|
<template v-if="col.name === '_sortNo_'"> |
|
|
|
{{ scope.rowIndex + 1 }} |
|
|
|
</template> |
|
|
|
<template v-else-if="col.value && typeof col.value === 'object' && col.value.type && col.value._vuecomp_"> |
|
|
|
<component :is="col.value.type" v-bind="col.value.props"></component> |
|
|
|
<template v-else-if="col.value && typeof col.value === 'object' && col.value.componentsType"> |
|
|
|
<component :is="col.value.componentsType" v-bind="col.value.attrs"></component> |
|
|
|
</template> |
|
|
|
<template v-else> |
|
|
|
{{ col.value }} |
|
|
|