├── .gitignore ├── README.md ├── components └── global │ ├── ChatChart.vue │ ├── ChatCode.vue │ ├── ChatImage.vue │ └── ChatText.vue ├── data └── messages.ts ├── nuxt.config.js ├── package.json ├── pages └── index.vue ├── pnpm-lock.yaml └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-chat-dynamic-components/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-chat-dynamic-components/HEAD/README.md -------------------------------------------------------------------------------- /components/global/ChatChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-chat-dynamic-components/HEAD/components/global/ChatChart.vue -------------------------------------------------------------------------------- /components/global/ChatCode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-chat-dynamic-components/HEAD/components/global/ChatCode.vue -------------------------------------------------------------------------------- /components/global/ChatImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-chat-dynamic-components/HEAD/components/global/ChatImage.vue -------------------------------------------------------------------------------- /components/global/ChatText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-chat-dynamic-components/HEAD/components/global/ChatText.vue -------------------------------------------------------------------------------- /data/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-chat-dynamic-components/HEAD/data/messages.ts -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-chat-dynamic-components/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-chat-dynamic-components/HEAD/package.json -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-chat-dynamic-components/HEAD/pages/index.vue -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-chat-dynamic-components/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atinux/nuxt-chat-dynamic-components/HEAD/tsconfig.json --------------------------------------------------------------------------------