skip to Main Content

v-for cannot read prop data-Twitter bootstrap

<template> <span> <i class="fa fa-star text-warning fa-2x" v-for="r in rating" :key="r"></i> <h1>{{rating}}</h1> </span> </template> <script> export default { name: "ratings", props: ["rating"], } </script> <style> </style> This is one of my child component where 4 is passing as prop and…

VIEW QUESTION

Bootstrap button padding not loading-Twitter bootstrap

I'm trying to get some buttons to work in Bootstrap 5: <link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet" /> <div class="container-fluid"> <div class="row"> <div class="col-12"> <a class="btn-primary">0000</a> <button class="btn-primary">0000</button> </div> </div> </div> But the styles aren't being applied correctly, the buttons appear to be…

VIEW QUESTION
Back To Top
Search