3 changed files with 42 additions and 5 deletions
@ -0,0 +1,34 @@ |
|||
<template> |
|||
<div class="viewClass"> |
|||
预览 |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import _ from 'lodash' |
|||
import dayjs from 'dayjs' |
|||
import { ElMessage, ElMessageBox } from 'element-plus' |
|||
export default { |
|||
name: 'viewcomponent', |
|||
components: {}, |
|||
props: { |
|||
rowData: { |
|||
type: Array, |
|||
default: () => { |
|||
return {} |
|||
} |
|||
}, |
|||
}, |
|||
data() { |
|||
return { |
|||
_: _, |
|||
dayjs: dayjs, |
|||
} |
|||
}, |
|||
methods: {}, |
|||
async mounted() { }, |
|||
watch: {}, |
|||
computed: {} |
|||
} |
|||
</script> |
|||
<style scoped></style> |
Loading…
Reference in new issue