├── .babelrc ├── .editorconfig ├── .gitignore ├── .postcssrc.js ├── README.md ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── index.html ├── package.json ├── src ├── App.vue ├── assets │ └── logo.png ├── components │ ├── at.vue │ ├── div-editor.vue │ └── emoji-box.vue ├── main.js └── utils │ ├── dom-utils.js │ ├── emojis.js │ └── index.js └── static ├── .gitkeep └── emoji ├── 便便.gif ├── 再见.gif ├── 发呆.gif ├── 呲牙.gif ├── 坏笑.gif ├── 大兵.gif ├── 大哭.gif ├── 微笑.gif ├── 惊讶.gif ├── 抠鼻.gif ├── 玫瑰.gif └── 色.gif /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/at.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/src/components/at.vue -------------------------------------------------------------------------------- /src/components/div-editor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/src/components/div-editor.vue -------------------------------------------------------------------------------- /src/components/emoji-box.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/src/components/emoji-box.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/src/main.js -------------------------------------------------------------------------------- /src/utils/dom-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/src/utils/dom-utils.js -------------------------------------------------------------------------------- /src/utils/emojis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/src/utils/emojis.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/emoji/便便.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/static/emoji/便便.gif -------------------------------------------------------------------------------- /static/emoji/再见.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/static/emoji/再见.gif -------------------------------------------------------------------------------- /static/emoji/发呆.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/static/emoji/发呆.gif -------------------------------------------------------------------------------- /static/emoji/呲牙.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/static/emoji/呲牙.gif -------------------------------------------------------------------------------- /static/emoji/坏笑.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/static/emoji/坏笑.gif -------------------------------------------------------------------------------- /static/emoji/大兵.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/static/emoji/大兵.gif -------------------------------------------------------------------------------- /static/emoji/大哭.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/static/emoji/大哭.gif -------------------------------------------------------------------------------- /static/emoji/微笑.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/static/emoji/微笑.gif -------------------------------------------------------------------------------- /static/emoji/惊讶.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/static/emoji/惊讶.gif -------------------------------------------------------------------------------- /static/emoji/抠鼻.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/static/emoji/抠鼻.gif -------------------------------------------------------------------------------- /static/emoji/玫瑰.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/static/emoji/玫瑰.gif -------------------------------------------------------------------------------- /static/emoji/色.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylfeng250/div-editor/HEAD/static/emoji/色.gif --------------------------------------------------------------------------------