Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I'm getting Invalid end tag error in vuejs

I'm developing a project with VueJS. Now I am only including a ready-made template in the Vue project. I haven't written any vue code yet. But I keep getting compile errors. I am sure there is no error in my code. But the error just doesn't go away. I share with you my codes and error message in the component I got an error.

<div class="infotechno-hero infotechno-bg">
    <div class="container-fluid">
        <div class="row align-items-center">
            <div class="col-lg-6 col-md-6">
                <div class="infotechno-hero-text  wow move-up">
                    <h6>IT Design  Consulting </h6>
                    <h1 class="font-weight--reguler mb-15">Facilitate All <br>  Local IT-related Service Providers  </h1>
                    <p>Highly Tailored IT Design, Management  Support Services. </p>
                    <div class="hero-button  mt-30">
                        <a href="#" class="ht-btn ht-btn-md">Get details</a>
                    </div>
                </div>
            </div>
            <div class="col-lg-6 col-md-6">
                <div class="infotechno-hero-inner-images">
                    <div class="infotechno-inner-one">
                        <img class="img-fluid" src="assets\images\hero\home-infotechno-main-slider-slide-01-image-01.png" alt="" />
                    </div>
                    <div class="infotechno-inner-two  wow move-up">
                        <img class="img-fluid" src="assets\images\hero\home-infotechno-main-slider-slide-01-image-02.png" alt="" />
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

enter image description here

like image 657
Muhammed Yusuf Taşkesenligil Avatar asked Sep 14 '25 03:09

Muhammed Yusuf Taşkesenligil


1 Answers

Where is your template tags? You have to write your divs in a template in vue files. You can look at there for more info: https://v2.vuejs.org/v2/guide/syntax.html

<template>
  <div class="infotechno-hero infotechno-bg">
    <div class="container-fluid">
      <div class="row align-items-center">
        <div class="col-lg-6 col-md-6">
          <div class="infotechno-hero-text wow move-up">
            <h6>IT Design Consulting</h6>
            <h1 class="font-weight--reguler mb-15">
              Facilitate All
              <br />Local IT-related Service Providers
            </h1>
            <p>Highly Tailored IT Design, Management Support Services.</p>
            <div class="hero-button mt-30">
              <a href="#" class="ht-btn ht-btn-md">Get details</a>
            </div>
          </div>
        </div>
        <div class="col-lg-6 col-md-6">
          <div class="infotechno-hero-inner-images">
            <div class="infotechno-inner-one">
              <img class="img-fluid" src="assets\images\hero\home-infotechno-main-slider-slide-01-image-01.png" alt />
            </div>
            <div class="infotechno-inner-two wow move-up">
              <img class="img-fluid" src="assets\images\hero\home-infotechno-main-slider-slide-01-image-02.png" alt />
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</template>
like image 135
Tolga Kaya Avatar answered Sep 16 '25 17:09

Tolga Kaya