feat: 补齐配置文件

This commit is contained in:
MTrun
2022-02-28 16:08:25 +08:00
parent c29a70f90b
commit 5675ea0720
41 changed files with 161 additions and 1 deletions
@@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>
@@ -1,4 +1,5 @@
import BorderCommon from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/decorates/border.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d'
@@ -10,5 +11,6 @@ export const BorderCommonConfig: ConfigType = {
categoryName: ChatCategoryEnumName.BORDER,
package: PackagesCategoryEnum.DECORATES,
node: BorderCommon,
conNode: () => Configuration,
image
}
@@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>
@@ -1,4 +1,5 @@
import Number from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/decorates/number.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d'
@@ -10,5 +11,6 @@ export const NumberConfig: ConfigType = {
categoryName: ChatCategoryEnumName.MORE,
package: PackagesCategoryEnum.DECORATES,
node: Number,
conNode: () => Configuration,
image
}
@@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>
@@ -1,4 +1,5 @@
import Time from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/decorates/time.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d'
@@ -10,5 +11,6 @@ export const TimeConfig: ConfigType = {
categoryName: ChatCategoryEnumName.MORE,
package: PackagesCategoryEnum.DECORATES,
node: Time,
conNode: () => Configuration,
image
}
@@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>
@@ -1,4 +1,5 @@
import Weather from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/decorates/weather.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d'
@@ -10,5 +11,6 @@ export const WeatherConfig: ConfigType = {
categoryName: ChatCategoryEnumName.MORE,
package: PackagesCategoryEnum.DECORATES,
node: Weather,
conNode: () => Configuration,
image
}
@@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>
@@ -1,4 +1,5 @@
import WeatherTime from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/decorates/weather_time.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d'
@@ -10,5 +11,6 @@ export const WeatherTimeConfig: ConfigType = {
categoryName: ChatCategoryEnumName.MORE,
package: PackagesCategoryEnum.DECORATES,
node: WeatherTime,
conNode: () => Configuration,
image
}