This commit is contained in:
vabene1111
2021-09-13 12:39:29 +02:00
parent c7be37d4b8
commit 4fbf080e2f
6 changed files with 149 additions and 38 deletions

View File

@ -0,0 +1,48 @@
<template>
<div id="app" >
</div>
</template>
<script>
import Vue from 'vue'
import {BootstrapVue} from 'bootstrap-vue'
import 'bootstrap-vue/dist/bootstrap-vue.css'
import {ResolveUrlMixin} from "@/utils/utils";
Vue.use(BootstrapVue)
export default {
name: 'RecipeSearchView',
mixins: [ResolveUrlMixin],
components: {},
data() {
return {
}
},
computed: {
},
mounted() {
this.$i18n.locale = window.CUSTOM_LOCALE
},
watch: {
},
methods: {
}
}
</script>
<style src="vue-multiselect/dist/vue-multiselect.min.css"></style>
<style>
</style>