├── .gitignore ├── README.md ├── babel.config.js ├── package.json ├── public ├── favicon.ico └── index.html └── src ├── App.vue ├── assets └── logo.png ├── components └── HelloWorld.vue ├── main.js └── services ├── config.js └── produtos.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelsonbrito/produtos-front/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelsonbrito/produtos-front/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelsonbrito/produtos-front/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelsonbrito/produtos-front/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelsonbrito/produtos-front/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelsonbrito/produtos-front/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelsonbrito/produtos-front/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelsonbrito/produtos-front/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelsonbrito/produtos-front/HEAD/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelsonbrito/produtos-front/HEAD/src/main.js -------------------------------------------------------------------------------- /src/services/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelsonbrito/produtos-front/HEAD/src/services/config.js -------------------------------------------------------------------------------- /src/services/produtos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelsonbrito/produtos-front/HEAD/src/services/produtos.js --------------------------------------------------------------------------------