0๐
<template>
<div id="app">
<app-header></app-header>
</div>
</template>
<script>
import Header from "./components/views/Header.vue"
export default {
components: {
appHeader: Header,
}
}
</script>
- [Vuejs]-Internet Explorer issue with remote Vue.js
- [Vuejs]-Vue โ Right way to merge two different types of data
Source:stackexchange.com