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

Font Awesome with Bootstrap Social Icons only showing respective colours in squares instead of full icons-Twitter bootstrap

This is the CSS: <head> <!-- Required meta tags always come first --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <!-- Bootstrap CSS --> <link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css"> <link rel = "stylesheet" href="node_modules/font-awesome/css/font-awesome.min.css"> <link rel = "stylesheet" href="node_modules/bootstrap-social/bootstrap-social.css">…

VIEW QUESTION
Back To Top
Search