I am a newcomer to Vue.JS and front-end programming in general. I wanted to create a page with a fixed sidebar and content below a navbar. Here is the configuration I tried:
<template>
<div class="container-fluid">
<div class="row">
<div class="col-md-6">.col-md-6</div>
<div class="col-md-12">.col-md-12</div>
</div>
</div>
</template>
I attempted to put my sidebar content in the .col-md-6 div, but they are being displayed stacked on top of each other instead of side by side.