ChatBox

簡介

是一個基於 Vue 2 + TypeScript 的輕量級聊天框組件

背景

在工作上曾經開發過一個腳本化的 chatBox 將這個功能抽出做成小 Project

功能

interface SingleScript {
  title: string;
  type: string;
  option?: ChatOption[];
  next?: string;
}

透過 next 欄位決定下一個對話框的 id

type 決定對話框的顯示模式

title 代表內容

Demo

https://de-yu.github.io/vue-chatbox/demo/

Last updated