|
123456789101112131415161718192021222324 |
- import BlockValue from '@/components/value/index.vue';
- export default {
- components: {
- BlockValue
- },
- props: {
- data: {
- type: Array,
- default: function () {
- return []
- }
- }
- },
- data () {
- return {
- };
- },
- created () {
- },
- mounted () {
- },
- methods: {
- }
- };
|