mirror of
https://gitee.com/dromara/go-view.git
synced 2026-04-23 00:00:12 +08:00
feat:新增组件
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import Image from './index.vue'
|
||||
import image from '@/assets/images/chart/informations/photo.png'
|
||||
import { ConfigType } from '@/packages/index.d'
|
||||
import { ChatCategoryEnum } from '../../index.d'
|
||||
|
||||
export const ImageConfig: ConfigType = {
|
||||
key: 'Image',
|
||||
title: '图片',
|
||||
category: ChatCategoryEnum.MORE,
|
||||
node: Image,
|
||||
image
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
<template>
|
||||
<div>
|
||||
词云
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
</style>
|
||||
@@ -1,3 +1,4 @@
|
||||
import { TextCloudConfig } from './TextCloud/index'
|
||||
import { ImageConfig } from './Image/index'
|
||||
|
||||
export default [TextCloudConfig]
|
||||
export default [ImageConfig, TextCloudConfig]
|
||||
|
||||
Reference in New Issue
Block a user