Socket
Socket
Sign inDemoInstall

md-template-loader

Package Overview
Dependencies
20
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    md-template-loader

support multiple vue template in a markdown doc


Version published
Weekly downloads
1
Maintainers
1
Install size
3.44 MB
Created
Weekly downloads
 

Readme

Source

md-template-loader

support multiple vue template in a markdown doc.

Getting Started

To begin, you'll need to install md-template-loader:

$ npm install md-template-loader --save-dev

Then add the loader to your webpack config. For example:

webpack.config.js

module.exports = {
  module: {
    rules: [
      {
        test: /\.md$/,
        use: [
          {
            loader: "vue-loader",
          },
          {
            loader: "md-template-loader",
          },
        ],
      },
    ],
  },
};

And run webpack via your preferred method.

can use vue template mode

you need create a demo-block.vue and register

<template>
    <div>
        <div>
            <slot name="source"></slot>
        </div>
        <div @click="showCode=!showCode">
            <span
              :class="[showCode ? 'icon-base-arrow-up-bold' : 'icon-base-arrow-down-bold']"
              >
              </span>
        </div>
        <div v-show="showCode">
            <slot name="highlight"></slot>
        </div>
    </div>
</template>
<script>

export default {
  data() {
    return {
      showCode: false
    };
  }
};
</script>

Then start writing the markdown document:


<!-- start -->
::: demo test1
``html

<template>
    <button @click="showToast()">click1</button>
</template>

<script>
export default {
    methods: {
        showToast() {
           window.alert(1)
        }
    }
};
</script>
``
:::
<!-- end -->

::: demo test1
``html

<template>
    <button @click="showToast()">click2</button>
</template>

<script>
export default {
    methods: {
        showToast() {
           window.alert(2)
        }
    }
};
</script>
``
:::

We will find that writing two Vue templates in the same markdown will not cause an error in the click event

Keywords

FAQs

Last updated on 20 Aug 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc