JavaScript

JavaScript

Made by DeepSource

Disallow unnecessary mustache interpolations JS-0716

Anti-pattern
Minor
vue

The mustache interpolation with a string literal value can be changed to a static contents.

Bad Practice

<template>
  {{ 'Lorem ipsum' }}
  {{ "Lorem ipsum" }}
  {{ `Lorem ipsum` }}
</template>

Recommended

<template>
  Lorem ipsum
  {{ foo }}
</template>