The Bubble web UI in VueJS
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
Jonathan Cobb 248e36f28f sort tags alphabetically il y a 3 ans
src sort tags alphabetically il y a 3 ans
vue-vuex-registration-login-example-docs first commit il y a 4 ans
.babelrc Implement lazy loading and new UI layout (#17) il y a 4 ans
.gitignore do not commit actual webpack.config.dev.js il y a 4 ans
LICENSE.md update copyright year il y a 4 ans
README.md clarify comment il y a 4 ans
package-lock.json upgrade lockfile il y a 3 ans
package.json Implement new layout (#58) il y a 4 ans
web-development.md clarify il y a 4 ans
webpack.config.js Account policy page (#41) il y a 4 ans

README.md

bubble-web

Bubble frontend VueJS web application

The initial basis for the bubble-web frontend was Jason Watmore’s wonderfully well-written Vue/Vuex Registration and Login Example. The LICENSE and README.md files for this code are in the vue-vuex-registration-login-example-docs directory.

To use this frontend with a Bubble API:

Build it:

npm install
webpack

In your ${HOME}/.bubble-test.env file, add this line (fix the path to point to the correct location of your bubble-web/dist directory):

export BUBBLE_ASSETS_DIR=/path/to/bubble-web/dist

In the bubble/bubble-server directory, run the test named bubble.test.dev.DevServerTest, which will run the API and perform initial activation.

mvn -Dtest=bubble.test.dev.DevServerTest test

You can now test the frontend. If you make changes to the frontend code, you can simply run webpack again and reload the page in your browser.