1
0
mirror of https://github.com/TandoorRecipes/recipes.git synced 2026-01-11 00:58:32 -05:00

adding test page

This commit is contained in:
vabene1111
2023-01-19 20:31:52 +01:00
parent 191c38db8f
commit fb21622bfe
4 changed files with 75 additions and 81 deletions

View File

@@ -0,0 +1,39 @@
<template>
<div id="app">
</div>
</template>
<script>
import Vue from "vue"
import { BootstrapVue } from "bootstrap-vue"
import "bootstrap-vue/dist/bootstrap-vue.css"
Vue.use(BootstrapVue)
//import Multiselect from "vue-multiselect"
export default {
name: "TestView",
mixins: [],
components: {
// Multiselect,
},
data() {
return {
}
},
mounted() {
this.$i18n.locale = window.CUSTOM_LOCALE
},
methods: {
},
}
</script>
<style></style>