Simple client abstraction for the chipsgg development platform.
Below is an example of how the client library can be initialized with vuejs.
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import ChipsGG from 'chipsgg-client'
const Start = async () => {
const props = await ChipsGG()
return new Vue({
router,
render: createElement =>
createElement(App, {
props,
}),
}).$mount('#app')
}
Start()