0.0.14 • Published 2 months ago

vue3-xml-viewer v0.0.14

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

vue3-xml-viewer

A Vue 3 component to display a formatted and colored XML document. The project is forked from https://github.com/leon737/vue-xml-viewer and made Vue3 a first class citizen.

Live demo

https://antony-k1208.github.io/vue3-xml-viewer/

Setup

npm install vue3-xml-viewer --save
yarn add vue3-xml-viewer

Usage

<template>
    <div>
        <XmlViewer :xml="xml" />
    </div>
</template>
import XmlViewer from 'vue3-xml-viewer'

export default {
    components: {
        XmlViewer
    },
    setup() {
        const xml = getSomeXmlAsString()
        
        return {
            xml
        }
    }
}
0.0.13

2 months ago

0.0.14

2 months ago

0.0.12

1 year ago

0.0.11

2 years ago

0.0.1

2 years ago