├── .gitignore ├── .vscode └── extensions.json ├── README.md ├── index.html ├── package.json ├── public └── vite.svg ├── src ├── App.vue ├── assets │ ├── my-library-vue-ts.scss │ ├── scss │ │ └── _global.scss │ └── vue.svg ├── components │ ├── HelloWorld.vue │ ├── MyButton.vue │ ├── index.ts │ └── main.ts ├── main.ts ├── style.css └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraelDCastro/my-library-vue-ts/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraelDCastro/my-library-vue-ts/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraelDCastro/my-library-vue-ts/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraelDCastro/my-library-vue-ts/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraelDCastro/my-library-vue-ts/HEAD/package.json -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraelDCastro/my-library-vue-ts/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraelDCastro/my-library-vue-ts/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/my-library-vue-ts.scss: -------------------------------------------------------------------------------- 1 | @import "./scss/global"; 2 | -------------------------------------------------------------------------------- /src/assets/scss/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraelDCastro/my-library-vue-ts/HEAD/src/assets/scss/_global.scss -------------------------------------------------------------------------------- /src/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraelDCastro/my-library-vue-ts/HEAD/src/assets/vue.svg -------------------------------------------------------------------------------- /src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraelDCastro/my-library-vue-ts/HEAD/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/components/MyButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraelDCastro/my-library-vue-ts/HEAD/src/components/MyButton.vue -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraelDCastro/my-library-vue-ts/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/components/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraelDCastro/my-library-vue-ts/HEAD/src/components/main.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraelDCastro/my-library-vue-ts/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraelDCastro/my-library-vue-ts/HEAD/src/style.css -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraelDCastro/my-library-vue-ts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraelDCastro/my-library-vue-ts/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraelDCastro/my-library-vue-ts/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraelDCastro/my-library-vue-ts/HEAD/yarn.lock --------------------------------------------------------------------------------