├── .eslintignore ├── .eslintrc.js ├── .github └── FUNDING.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── WechatIMG1.jpeg ├── WechatIMG2.jpeg ├── index.html ├── package.json ├── public ├── awesome.svg └── electron.svg ├── src ├── App.vue ├── At.scss ├── At.vue ├── AtTemplate.vue ├── AtTextarea.vue ├── main.js └── util.js ├── test_umd.html └── vue.config.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritx/vue-at/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritx/vue-at/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritx/vue-at/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritx/vue-at/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritx/vue-at/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritx/vue-at/HEAD/README.md -------------------------------------------------------------------------------- /WechatIMG1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritx/vue-at/HEAD/WechatIMG1.jpeg -------------------------------------------------------------------------------- /WechatIMG2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritx/vue-at/HEAD/WechatIMG2.jpeg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritx/vue-at/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritx/vue-at/HEAD/package.json -------------------------------------------------------------------------------- /public/awesome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritx/vue-at/HEAD/public/awesome.svg -------------------------------------------------------------------------------- /public/electron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritx/vue-at/HEAD/public/electron.svg -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritx/vue-at/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/At.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritx/vue-at/HEAD/src/At.scss -------------------------------------------------------------------------------- /src/At.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritx/vue-at/HEAD/src/At.vue -------------------------------------------------------------------------------- /src/AtTemplate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritx/vue-at/HEAD/src/AtTemplate.vue -------------------------------------------------------------------------------- /src/AtTextarea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritx/vue-at/HEAD/src/AtTextarea.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritx/vue-at/HEAD/src/main.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritx/vue-at/HEAD/src/util.js -------------------------------------------------------------------------------- /test_umd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritx/vue-at/HEAD/test_umd.html -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritx/vue-at/HEAD/vue.config.js --------------------------------------------------------------------------------