Der Bookingflix Quickstart dient der Verwaltung und des Erstellens von Terminkalendern.
npm install bookingflix_quickstartDer Bookingflix Quickstart dient der Verwaltung und des Erstellens von Terminkalendern.
``html`
| Option | Type | Attribute |
| ------ | ---- | --------- |
| lang | String | de, en, fr, es |
| data | Object | {...} |
(optional) save.vue
`js`
mounted () {
window.flix_quickstart = false
window.flix_quickstart = function (assistent, service) {
this.setSave(assistent);
this.setService(service, assistent);
}.bind(this)
}
src/main.js
`javascript
import Vue from 'vue'
import quickstart from 'bookingflix_quickstart'
...
Vue.use(quickstart)
new Vue({
...
}).$mount('#app')
`
plugins/quickstart.js
`js
import Vue from 'vue'
import quickstart from 'bookingflix_quickstart'
Vue.use(quickstart)
`
nuxt.config.js
`js`
export default {
...
plugins: [
{
src: '~/plugins/quickstart.js',
ssr: false,
client: true
}
],
...
}
/.env.developement.local
```
VUE_APP_API_URL=http://localhost:8081
VUE_APP_BASE_URL=https://localhost:8080
VUE_APP_BRAND=BookingflixDemo