vue-diff icon indicating copy to clipboard operation
vue-diff copied to clipboard

Can it support on-demand import in single page

Open ZhangTomLiang opened this issue 2 years ago • 1 comments

I saw the document that mentioned global import, it would be better if you can support that. thank you.

ZhangTomLiang avatar Jan 29 '23 04:01 ZhangTomLiang

Just went into using this lib, for thos who are asking, you can bypass the globall App.use import by just importing the Diff component in your targeted file

<template>
     <Diff theme="light" language="ts" ... />
</template>

<script lang="ts" setup>
    import { Diff } from 'vue-diff';
    import 'vue-diff/dist/index.css';
</script>

alxpereira avatar May 12 '24 01:05 alxpereira