Конечно. Вы импортируете и используете их, как в моем примере. Не забудьте зарегистрировать их в components
, как видите.
Это может быть ваш app.vue
файл
<template>
<div id="app" class="container">
<the-header />
<!-- this could be <TheHeader /> depending on your setup -->
<the-navigation />
<!-- this could be <TheNavigation /> depending on your setup -->
</div>
</template>
<script>
import TheHeader from '@/components/the-header.vue'
import TheNavigation from '@/components/the-navigation.vue'
export default {
name: 'app',
components: {
TheHeader,
TheNavigation
}
</script>
<style lang="scss">
</style>