skip to Main Content

How to host multiple website with same domain but different path ex: domain.fr/siteA, domain.fr/siteB, /siteC with docker and nginx reverse proxy

Just wondering what is the difference between import { getContent } from '@/assets/welcome-content.js' import Navigation from '@/components/Navigation' and import { getContent } from '~/assets/welcome-content.js' import Navigation from '~/components/Navigation' Both seems to work but when I add the lines below in…

VIEW QUESTION

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
Back To Top
Search