Currently, I am utilizing Bootstrap in conjunction with Vue within an App.vue file. One issue I have encountered is the excessive empty space on both the left and right sides when using Bootstrap. An image has been provided below for reference. I followed the default code from the Grid System website and made sure that there were no conflicting styles under my Vue styles except for the red outline. It is perplexing to me why my columns are not aligning properly to the left. https://i.sstatic.net/yR9dF.png
Is it possible that there are other style properties in Vue that may be taking precedence?
<template>
<div class="container">
<div class="row">
<div class="col-sm">
One of three columns
</div>
<div class="col-sm">
One of three columns
</div>
<div class="col-sm">
One of three columns
</div>
</div>
</div>
</template>