├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── README.md ├── config ├── dev.env.js ├── index.js ├── prod.env.js └── test.env.js ├── index.html ├── package.json ├── screenshots ├── code.png ├── face.png └── main.png ├── src ├── App.vue ├── assets │ ├── default.png │ ├── logo.png │ └── user.png ├── common │ └── util.js ├── components │ ├── ChatList.vue │ ├── Foot-backup.vue │ └── Heads.vue └── main.js ├── static ├── .gitkeep └── emotion │ ├── 100.gif │ ├── 101.gif │ ├── 102.gif │ ├── 103.gif │ ├── 104.gif │ ├── 105.gif │ ├── 106.gif │ ├── 107.gif │ ├── 108.gif │ ├── 109.gif │ ├── 110.gif │ ├── 111.gif │ ├── 112.gif │ ├── 113.gif │ ├── 114.gif │ ├── 115.gif │ ├── 116.gif │ ├── 117.gif │ ├── 118.gif │ ├── 119.gif │ ├── 120.gif │ ├── 121.gif │ ├── 122.gif │ ├── 123.gif │ ├── 124.gif │ ├── 125.gif │ ├── 126.gif │ ├── 127.gif │ ├── 128.gif │ ├── 129.gif │ ├── 130.gif │ ├── 131.gif │ ├── 132.gif │ ├── 133.gif │ ├── 134.gif │ ├── 135.gif │ ├── 136.gif │ ├── 137.gif │ ├── 138.gif │ ├── 139.gif │ ├── 140.gif │ ├── 141.gif │ ├── 142.gif │ ├── 143.gif │ ├── 144.gif │ ├── 145.gif │ ├── 146.gif │ ├── 147.gif │ ├── 148.gif │ ├── 149.gif │ ├── 150.gif │ ├── 151.gif │ ├── 152.gif │ ├── 153.gif │ ├── 154.gif │ ├── 155.gif │ ├── 156.gif │ ├── 157.gif │ ├── 158.gif │ ├── 159.gif │ ├── 160.gif │ ├── 161.gif │ ├── 162.gif │ ├── 163.gif │ ├── 164.gif │ ├── 165.gif │ ├── 166.gif │ ├── 167.gif │ ├── 168.gif │ ├── 169.gif │ ├── 170.gif │ ├── 171.gif │ ├── 172.gif │ ├── 173.gif │ ├── 174.gif │ ├── 175.gif │ ├── 176.gif │ ├── 177.gif │ ├── 178.gif │ ├── 179.gif │ ├── 180.gif │ ├── 181.gif │ ├── 182.gif │ ├── 183.gif │ ├── 184.gif │ ├── 185.gif │ ├── 186.gif │ ├── 187.gif │ ├── 188.gif │ ├── 189.gif │ ├── 190.gif │ ├── 191.gif │ ├── 192.gif │ ├── 193.gif │ ├── 194.gif │ ├── 195.gif │ ├── 196.gif │ ├── 197.gif │ ├── 198.gif │ ├── 199.gif │ ├── meinv.png │ ├── shangxin.png │ └── weixiao.png └── test ├── e2e ├── custom-assertions │ └── elementCount.js ├── nightwatch.conf.js ├── runner.js └── specs │ └── test.js └── unit ├── .eslintrc ├── index.js ├── karma.conf.js └── specs └── Hello.spec.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/config/test.env.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/screenshots/code.png -------------------------------------------------------------------------------- /screenshots/face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/screenshots/face.png -------------------------------------------------------------------------------- /screenshots/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/screenshots/main.png -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/src/assets/default.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/src/assets/user.png -------------------------------------------------------------------------------- /src/common/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/src/common/util.js -------------------------------------------------------------------------------- /src/components/ChatList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/src/components/ChatList.vue -------------------------------------------------------------------------------- /src/components/Foot-backup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/src/components/Foot-backup.vue -------------------------------------------------------------------------------- /src/components/Heads.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/src/components/Heads.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/src/main.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/emotion/100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/100.gif -------------------------------------------------------------------------------- /static/emotion/101.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/101.gif -------------------------------------------------------------------------------- /static/emotion/102.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/102.gif -------------------------------------------------------------------------------- /static/emotion/103.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/103.gif -------------------------------------------------------------------------------- /static/emotion/104.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/104.gif -------------------------------------------------------------------------------- /static/emotion/105.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/105.gif -------------------------------------------------------------------------------- /static/emotion/106.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/106.gif -------------------------------------------------------------------------------- /static/emotion/107.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/107.gif -------------------------------------------------------------------------------- /static/emotion/108.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/108.gif -------------------------------------------------------------------------------- /static/emotion/109.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/109.gif -------------------------------------------------------------------------------- /static/emotion/110.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/110.gif -------------------------------------------------------------------------------- /static/emotion/111.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/111.gif -------------------------------------------------------------------------------- /static/emotion/112.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/112.gif -------------------------------------------------------------------------------- /static/emotion/113.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/113.gif -------------------------------------------------------------------------------- /static/emotion/114.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/114.gif -------------------------------------------------------------------------------- /static/emotion/115.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/115.gif -------------------------------------------------------------------------------- /static/emotion/116.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/116.gif -------------------------------------------------------------------------------- /static/emotion/117.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/117.gif -------------------------------------------------------------------------------- /static/emotion/118.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/118.gif -------------------------------------------------------------------------------- /static/emotion/119.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/119.gif -------------------------------------------------------------------------------- /static/emotion/120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/120.gif -------------------------------------------------------------------------------- /static/emotion/121.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/121.gif -------------------------------------------------------------------------------- /static/emotion/122.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/122.gif -------------------------------------------------------------------------------- /static/emotion/123.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/123.gif -------------------------------------------------------------------------------- /static/emotion/124.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/124.gif -------------------------------------------------------------------------------- /static/emotion/125.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/125.gif -------------------------------------------------------------------------------- /static/emotion/126.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/126.gif -------------------------------------------------------------------------------- /static/emotion/127.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/127.gif -------------------------------------------------------------------------------- /static/emotion/128.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/128.gif -------------------------------------------------------------------------------- /static/emotion/129.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/129.gif -------------------------------------------------------------------------------- /static/emotion/130.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/130.gif -------------------------------------------------------------------------------- /static/emotion/131.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/131.gif -------------------------------------------------------------------------------- /static/emotion/132.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/132.gif -------------------------------------------------------------------------------- /static/emotion/133.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/133.gif -------------------------------------------------------------------------------- /static/emotion/134.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/134.gif -------------------------------------------------------------------------------- /static/emotion/135.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/135.gif -------------------------------------------------------------------------------- /static/emotion/136.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/136.gif -------------------------------------------------------------------------------- /static/emotion/137.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/137.gif -------------------------------------------------------------------------------- /static/emotion/138.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/138.gif -------------------------------------------------------------------------------- /static/emotion/139.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/139.gif -------------------------------------------------------------------------------- /static/emotion/140.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/140.gif -------------------------------------------------------------------------------- /static/emotion/141.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/141.gif -------------------------------------------------------------------------------- /static/emotion/142.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/142.gif -------------------------------------------------------------------------------- /static/emotion/143.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/143.gif -------------------------------------------------------------------------------- /static/emotion/144.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/144.gif -------------------------------------------------------------------------------- /static/emotion/145.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/145.gif -------------------------------------------------------------------------------- /static/emotion/146.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/146.gif -------------------------------------------------------------------------------- /static/emotion/147.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/147.gif -------------------------------------------------------------------------------- /static/emotion/148.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/148.gif -------------------------------------------------------------------------------- /static/emotion/149.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/149.gif -------------------------------------------------------------------------------- /static/emotion/150.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/150.gif -------------------------------------------------------------------------------- /static/emotion/151.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/151.gif -------------------------------------------------------------------------------- /static/emotion/152.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/152.gif -------------------------------------------------------------------------------- /static/emotion/153.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/153.gif -------------------------------------------------------------------------------- /static/emotion/154.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/154.gif -------------------------------------------------------------------------------- /static/emotion/155.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/155.gif -------------------------------------------------------------------------------- /static/emotion/156.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/156.gif -------------------------------------------------------------------------------- /static/emotion/157.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/157.gif -------------------------------------------------------------------------------- /static/emotion/158.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/158.gif -------------------------------------------------------------------------------- /static/emotion/159.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/159.gif -------------------------------------------------------------------------------- /static/emotion/160.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/160.gif -------------------------------------------------------------------------------- /static/emotion/161.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/161.gif -------------------------------------------------------------------------------- /static/emotion/162.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/162.gif -------------------------------------------------------------------------------- /static/emotion/163.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/163.gif -------------------------------------------------------------------------------- /static/emotion/164.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/164.gif -------------------------------------------------------------------------------- /static/emotion/165.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/165.gif -------------------------------------------------------------------------------- /static/emotion/166.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/166.gif -------------------------------------------------------------------------------- /static/emotion/167.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/167.gif -------------------------------------------------------------------------------- /static/emotion/168.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/168.gif -------------------------------------------------------------------------------- /static/emotion/169.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/169.gif -------------------------------------------------------------------------------- /static/emotion/170.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/170.gif -------------------------------------------------------------------------------- /static/emotion/171.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/171.gif -------------------------------------------------------------------------------- /static/emotion/172.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/172.gif -------------------------------------------------------------------------------- /static/emotion/173.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/173.gif -------------------------------------------------------------------------------- /static/emotion/174.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/174.gif -------------------------------------------------------------------------------- /static/emotion/175.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/175.gif -------------------------------------------------------------------------------- /static/emotion/176.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/176.gif -------------------------------------------------------------------------------- /static/emotion/177.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/177.gif -------------------------------------------------------------------------------- /static/emotion/178.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/178.gif -------------------------------------------------------------------------------- /static/emotion/179.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/179.gif -------------------------------------------------------------------------------- /static/emotion/180.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/180.gif -------------------------------------------------------------------------------- /static/emotion/181.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/181.gif -------------------------------------------------------------------------------- /static/emotion/182.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/182.gif -------------------------------------------------------------------------------- /static/emotion/183.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/183.gif -------------------------------------------------------------------------------- /static/emotion/184.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/184.gif -------------------------------------------------------------------------------- /static/emotion/185.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/185.gif -------------------------------------------------------------------------------- /static/emotion/186.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/186.gif -------------------------------------------------------------------------------- /static/emotion/187.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/187.gif -------------------------------------------------------------------------------- /static/emotion/188.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/188.gif -------------------------------------------------------------------------------- /static/emotion/189.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/189.gif -------------------------------------------------------------------------------- /static/emotion/190.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/190.gif -------------------------------------------------------------------------------- /static/emotion/191.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/191.gif -------------------------------------------------------------------------------- /static/emotion/192.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/192.gif -------------------------------------------------------------------------------- /static/emotion/193.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/193.gif -------------------------------------------------------------------------------- /static/emotion/194.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/194.gif -------------------------------------------------------------------------------- /static/emotion/195.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/195.gif -------------------------------------------------------------------------------- /static/emotion/196.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/196.gif -------------------------------------------------------------------------------- /static/emotion/197.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/197.gif -------------------------------------------------------------------------------- /static/emotion/198.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/198.gif -------------------------------------------------------------------------------- /static/emotion/199.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/199.gif -------------------------------------------------------------------------------- /static/emotion/meinv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/meinv.png -------------------------------------------------------------------------------- /static/emotion/shangxin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/shangxin.png -------------------------------------------------------------------------------- /static/emotion/weixiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/static/emotion/weixiao.png -------------------------------------------------------------------------------- /test/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/test/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /test/e2e/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/test/e2e/nightwatch.conf.js -------------------------------------------------------------------------------- /test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/test/e2e/runner.js -------------------------------------------------------------------------------- /test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/test/e2e/specs/test.js -------------------------------------------------------------------------------- /test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/test/unit/.eslintrc -------------------------------------------------------------------------------- /test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/test/unit/index.js -------------------------------------------------------------------------------- /test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/test/unit/karma.conf.js -------------------------------------------------------------------------------- /test/unit/specs/Hello.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taylorchen709/vue-chat/HEAD/test/unit/specs/Hello.spec.js --------------------------------------------------------------------------------