Skip to content

Latest commit

 

History

History

interactive-demo-vue

Install

npm install

Run

npm run dev

Main dependencies and versions of project

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.

2022-04-09_122409

Store for 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

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