vue-3dcss-card
v1.0.7
Published
Vue card component for building card games
Downloads
4
Readme
Vue 3D CSS Game Card SFC
The fastest way to start building the dream game!
Getting started
To start working with card component you would need to install the package
$ npm install -D vue-3dcss-card
In your component / application insert the import and link MCard in your SFC locally
import MCard from "vue-3dcss-card";
...
components: { MCard },
...
Or register component globally (e.g. in App.vue)
import MCard from "vue-3dcss-card";
app.component('MCard', MCard)