1. vue-antd-md-loader
markdown file to vue component loader.
vue-antd-md-loader
Package: vue-antd-md-loader
Created by: tangjinzhou
Last modified: Tue, 28 Jun 2022 18:58:26 GMT
Version: 1.2.1-beta.1
License: WTFPL
Downloads: 311
Repository: https://github.com/tangjinzhou/vue-antd-md-loader

Install

npm install vue-antd-md-loader
yarn add vue-antd-md-loader

vue-antd-md-loader

md-loader based on vue-markdown-loader

Convert Markdown file to Vue Component using markdown-it.

Example

ant-design-vue

Installation

 # For Vue2
npm i vue-antd-md-loader -D

Feature

  • Hot reload
  • Write vue script
  • Code highlight

Usage

Documentation: Using loaders

webpack.config.js file:

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

License

WTFPL

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin