0👍
you can use 2 different main html page if your main scripts are entirely different. You can configure it in backend.
Another idea is adding only common scripts and styles in html file. And use your scoped styles in components. Add style of each component in "style" tag below "script" tag. make the style scoped using :
VUE COMPONENT:
<template>
</template>
<script>
<script>
<style scoped>
/* your style */
</style>
Scope of this style would only be applicable to current component.
- [Vuejs]-Flatpickr redraws the days list after selecting a day and all changes made with onDayCreate are lost
- [Vuejs]-How to make vueJS hyperlink using method
Source:stackexchange.com