Build a real time web application using Vue.js, MySql, Php, Firebase and Google cloud

Want to build a Real-Time Vue.js Application using Vue Boostrap MySql, Php, Google cloud, Firebase, emailjs? I have recently re-designed from scratch one of my old php website to a new bootstrap vuejs web application and hosted in Google cloud. I would like to share my experience through out this development process, what are the Issues I… Continue reading Build a real time web application using Vue.js, MySql, Php, Firebase and Google cloud

Published
Categorized as Vue Js

CORS header ‘Access-Control-Allow-Origin’ List multiple domains

The Access-Control-Allow-Origin response header indicates whether the response can be shared with requesting code from the given origin. More than one Access-Control-Allow-Origin header was sent by the server. This isn’t allowed. The possible solution could be, If you have access to the server you can change your implementation to echo back an origin in the Access-Control-Allow-Origin header. You cannot send back a… Continue reading CORS header ‘Access-Control-Allow-Origin’ List multiple domains

Published
Categorized as Vue Js

Method “computed” has type “object” in the component definition. Did you reference the function correctly?

Method “computed” has type “object” in the component definition. Did you reference the function correctly? If you are getting this error from a vue js component, one of the reason might be due to the below scenario. You are trying to place a compute property inside a methods section in vue js. Hope this helps… Continue reading Method “computed” has type “object” in the component definition. Did you reference the function correctly?

Published
Categorized as Vue Js Tagged Vue js

Vue.js Installation

How to install Vue.js using npm Steps to follow!Open the terminal window.Create a new folder & Install Vue CLI in itCreate a new projectGo to the project and start the serverAccess the default Vue js boilerplate application Let’s see the steps in detail! 1. Create a new folder to install vue/cli and go inside the… Continue reading Vue.js Installation

Published
Categorized as Vue Js Tagged Vue js

Error: No PostCSS Config found – Vue Js

When I installed a new theme in Vuejs I was getting an error “Module build failed: Error: No PostCSS Config found in: error in ./src/assets/css/font-awesome.min.csserror in ./node_modules/bootstrap/dist/css/bootstrap.csserror in ./node_modules/bootstrap-vue/dist/bootstrap-vue.css Module build failed: Error: No PostCSS Config found in: /Users/tovo_theme/path/node_modules/postcss-load-config/src/index.js:91:15 Solution Create the file postcss.config.js in the root directoy Add the below content in the postcss.config.js… Continue reading Error: No PostCSS Config found – Vue Js

Published
Categorized as Vue Js Tagged Vue js