npm install
npm run dev
We created the sample with npm create vite@latest interactive-demo-vue -- --template vue
.
We used antdv
for UI components.
We used Pinia
for Store of VUE.
This sample used Pinia as the Store for VUE. We wrapped FeatBit's feature flags in a pinia store named useFeatBitStore
in file '/src/featbit.js'.
This facilitates the usage of our feature flags. Every component can use feature flags through useFeatBitStore
. This ensures that the feature flags can be used and updated in real-time, and all of this is managed in file '/src/featbit.js'
docker build -t featbitdocker/demo-dino-game-vue:0.1.1 .
docker run -it -p 8080:80 --rm --name featbit-demo-dino-game-vue featbitdocker/demo-dino-game-vue
docker push featbitdocker/demo-dino-game-vue:0.1.1
docker pull featbitdocker/demo-dino-game-vue:latest