跳过这个元素和它的子元素的编译过程。可以用来显示原始 Mustache 标签

    1. <template>
    2. <div id="app">
    3. <button v-pre>{{(2<1)?message:"false"}}</button>
    4. </div>
    5. </template>
    6. <script>
    7. export default {
    8. data(){
    9. return {
    10. message:"abc"
    11. }
    12. }
    13. };
    14. </script>

    image.png