我是靠谱客的博主 闪闪牛排,最近开发中收集的这篇文章主要介绍vue 组件字符串判断_帮助将vue.js组件注入v-html字符串中的特定位置 多个插槽: (Multiple slots:),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

vue 组件字符串判断

HTML注入器 (HTML injector)

Helps inject a vue.js component to certain place in v-html string.

帮助将vue.js组件注入v-html字符串中的特定位置。

用法 (Usage)

Import: npm i vue-html-injector

导入: npm i vue-html-injector

import injector from 'vue-html-injector/main.vue'
export default {
  components: {
    injector
  }
}

Raw HTML

原始HTML

<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit,</p>  
%%default%%
<p>ed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>

Injector component with HTML prop "content"

具有HTML属性“内容”的喷油器组件

<injector :content="rawHTML">
  <p>{{ new Date().getFullYear() }}</p>
</injector>

多个插槽: (Multiple slots:)

Raw HTML

原始HTML

<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit,</p>  
%%image%%
<p>ed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
%%hr%%

Injector component with HTML prop "content"

具有HTML属性“内容”的喷油器组件

<injector :content="rawHTML">
  <template slot="image">
    <image-component src="logo.png" />
  </template>
  <template slot="hr">
    <hr />
  </template>
</injector>

翻译自: https://vuejsexamples.com/helps-inject-a-vue-js-component-to-certain-place-in-v-html-string/

vue 组件字符串判断

最后

以上就是闪闪牛排为你收集整理的vue 组件字符串判断_帮助将vue.js组件注入v-html字符串中的特定位置 多个插槽: (Multiple slots:)的全部内容,希望文章能够帮你解决vue 组件字符串判断_帮助将vue.js组件注入v-html字符串中的特定位置 多个插槽: (Multiple slots:)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(31)

评论列表共有 0 条评论

立即
投稿
返回
顶部