In this part, we will create the <script> section of the single file component. Follow these instructions to create the component correctly:
- Create a navigationBar.vue file in the src/components folder and open it.
- Create a default export object of the component, with the Vue property name:
<script>
export default {
name: 'NavigationBar',
};
</script>