Skip to content

Files

Latest commit

 

History

History
24 lines (17 loc) · 617 Bytes

no-v-text-v-html-on-component.md

File metadata and controls

24 lines (17 loc) · 617 Bytes

Pattern: Use of v-text/v-html on component

Issue: -

Description

If you use v-text/v-html on a component, it will overwrite the component's content and may break the component.

<template>
  <!-- ✓ GOOD -->
  <div v-text="content"></div>
  <div v-html="html"></div>
  <MyComponent>{{content}}</MyComponent>

  <!-- ✗ BAD -->
  <MyComponent v-text="content"></MyComponent>
  <MyComponent v-html="html"></MyComponent>
</template>

Further Reading