Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

alizeeshan's avatar

auto-suggestion not working in backticks

In the .js file in the Vue course... inside the backticks, my auto-suggestion is not working... I'm using VS Code and tried some extensions but still not working... Kindly tell me which method/extension will solve this issue???

  template: ` <li>
    <label class="p-2 flex justify-between items-center">
      {{assignment.name}}
      <input type="checkbox" v-model="assignment.complete" class="ml-3"/>
    </label>
  </li>`,
  props: {
    assignment: Object
  }
}
0 likes
2 replies
Sambull's avatar

You're working in a .vue file instead of a plain .js file for Vue components, as VS Code's extensions like Vetur are optimized for .vue files, which encapsulate templates, scripts, and styles together. https://www.yourtexasbenefits.bid/

alizeeshan's avatar

I'm working in a .js file just as in the lectures... auto-suggestion is working fine in the lectures but not on my side...

Please or to participate in this conversation.