All Projects → Shimada666 → v-code-diff

Shimada666 / v-code-diff

Licence: MIT license
A vue code diff display plugin, support Vue2 / Vue3

Programming Languages

typescript
32286 projects
Vue
7211 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to v-code-diff

Vue Code Diff
vue文件差异对比
Stars: ✭ 271 (+191.4%)
Mutual labels:  diff, code
security-code
A powerful security code input supports dynamic configuration of the number of input boxes.
Stars: ✭ 63 (-32.26%)
Mutual labels:  code, vue3
DPB
Dynamic Project Builder
Stars: ✭ 22 (-76.34%)
Mutual labels:  code
vitailse
Opinionated Vite starter template with TailwindCSS
Stars: ✭ 95 (+2.15%)
Mutual labels:  vue3
go-patchutils
go-patchutils is a library written in Go to show differences in source and diff files.
Stars: ✭ 19 (-79.57%)
Mutual labels:  diff
vue-next-rx
RxJS integration for Vue next
Stars: ✭ 31 (-66.67%)
Mutual labels:  vue3
vue-dk-toast
Lightweight toast-notification plugin for Vue 3 🍞
Stars: ✭ 23 (-75.27%)
Mutual labels:  vue3
taro-quick-start
Quick start project with Taro & Vue3 & TypeScript.
Stars: ✭ 35 (-62.37%)
Mutual labels:  vue3
sphinx-markdown-builder
sphinx builder that outputs markdown files.
Stars: ✭ 135 (+45.16%)
Mutual labels:  code
slider
Vue 3 slider component with multihandles, tooltips merging and formatting (+Tailwind CSS support).
Stars: ✭ 162 (+74.19%)
Mutual labels:  vue3
g2plot-vue
g2plot for vue, both 2 and 3
Stars: ✭ 106 (+13.98%)
Mutual labels:  vue3
PyTools
❤️❤️❤️ Cute Tools By Python
Stars: ✭ 51 (-45.16%)
Mutual labels:  code
code summarization public
source code for 'Improving automatic source code summarization via deep reinforcement learning'
Stars: ✭ 71 (-23.66%)
Mutual labels:  code
AnyDiff
A CSharp (C#) diff library that allows you to diff two objects and get a list of the differences back.
Stars: ✭ 80 (-13.98%)
Mutual labels:  diff
vue-reuse
基于composition-api的hooks函数库
Stars: ✭ 28 (-69.89%)
Mutual labels:  vue3
JavaCertification
This is a full resource guide for my attempt to get Java 11 Certified
Stars: ✭ 67 (-27.96%)
Mutual labels:  code
vue3-admin
admin-web后台管理项目骨架是基于vue3搭建起来的项目,前端ui库使用的是element-plus组件库,实现登录鉴权,动态菜单功能
Stars: ✭ 107 (+15.05%)
Mutual labels:  vue3
uni-chat
uni-app + vue3.0 + typescript + vue-cli 仿手机QQ聊天 qq表情包
Stars: ✭ 55 (-40.86%)
Mutual labels:  vue3
ionic-vue-mobile-template-01
Hybrid app template built with vue, ionic and capacitor.
Stars: ✭ 47 (-49.46%)
Mutual labels:  vue3
vue3-element-admin
🎉 基于 vite2 + vue3 + element-plus 的后台管理系统vue3-element-admin;使用vue-cli可以切换webpack分支
Stars: ✭ 79 (-15.05%)
Mutual labels:  vue3

VCodeDiff

NPM version License: MIT Downloads

A code diff display plugin, available for Vue2 / Vue3. It is the vue3 version of vue-code-diff, refer to a lot of code, thanks here.

🇨🇳 中文文档

Installation

Install v-code-diff

# With NPM
npm i v-code-diff

# With Yarn
yarn add v-code-diff

Vue2 developers need install composition-api

yarn add @vue/composition-api

Getting started

Vue3

Register globally

import {createApp} from 'vue'
import CodeDiff from 'v-code-diff'

app
    .use(CodeDiff)
    .mount('#app')

Then

<template>
  <code-diff
      :old-string="'12345'"
      :new-string="'3456'"
      file-name="test.txt"
      output-format="side-by-side"/>
</template>

Register locally

in vue file

<template>
  <code-diff
      :old-string="'12345'"
      :new-string="'3456'"
      file-name="test.txt"
      output-format="side-by-side"/>
</template>
<script lang="ts">
import {defineComponent} from 'vue'
import {CodeDiff} from 'v-code-diff'

export default defineComponent({
  components: {
    CodeDiff
  }
})
</script>

Vue2

Register globally

import Vue from 'vue';
import CodeDiff from 'v-code-diff'

Vue.use(CodeDiff);

Register locally

<template>
  <code-diff
      :old-string="'12345'"
      :new-string="'3456'"
      file-name="test.txt"
      output-format="side-by-side"/>
</template>
<script>
import {CodeDiff} from 'v-code-diff'

export default {
  name: 'App',
  components: {
    CodeDiff
  }
}
</script>

Events

Event Name Description Callback Params
before-render hook before rendering -
after-render hook after rendering -

Props

Prop Description Type Optional Default
highlight control whether to highlight the code boolean - true
language code language,such as typescript. If you don't input, it will be judged automatically. view all supported languages string - -
old-string old string string - -
new-string new string string - -
context number of show context lines number - -
outputFormat show method string line-by-line,side-by-side line-by-line
drawFileList show files list boolean - false
renderNothingWhenEmpty render nothing when empty boolean - false
diffStyle difference style string word, char word
fileName file name string -
isShowNoChange show raw when no change boolean - false
trim Remove blank characters before and after the string boolean - false
language code language boolean - false
noDiffLineFeed Do not diff windows line feed (CRLF) and linux line feed (LF) boolean - false

Difference from vue-code-diff

  • Support vue3
  • Smaller package size
  • Faster rendering speed

ChangeLog

0.3.11

  1. Add prop syncScroll to control whether the horizontal scroll bar needs to be scrolled synchronously

0.3.10

  1. Fixed type error when exporting

0.3.9

  1. Make the imported highlight.js style take effect only in .d2h-wrapper div

0.3.8

  1. Style adjustment, hide css d2h-file-header, same as vue-code-diff
  2. Add prop noDiffLineFeed, do not diff windows line feed (CRLF) and linux line feed (LF)

0.3.7

  1. Fix the problem of displaying "File Without Change..." when isShowNoChange is true and the old and new codes are different, then show all the source code

0.3.6

  1. Add prop language, make highlighting more accurate

0.3.5

  1. In the side-by-side mode, support left and right synchronous scrolling

0.3.4

  1. Add Prop trim, it will remove the blank characters before and after the string

0.3.3

  1. Fixed the problem of highlight failure.

0.3.2

  1. Fixed the warning for vue2 users in console

0.3.1

  1. Fix incorrect style when comparing text

0.3.0

  1. Performance optimization, now rendering has better performance
  2. Add Prop diffStyle to control whether to display word-level differences or char-level differences

0.2.1

  1. Use the function of asynchronous rendering of the highlight code, without blocking the ui, greatly improving the page rendering speed
  2. Add hook function (before rendering, after rendering): before-render, after-render

0.1.0

  1. Add prop highlight to control whether to highlight the code.

0.0.4

  1. Fix the problem of abnormal rendering in some browsers (such as safari)

0.0.3

  1. Prop: context default value changed from 5 to 10
  2. fix possible line-height conflict(such as antd.css in antd-vue)

0.0.1

First Version.

LICENCE

MIT License

Copyright (c) 2021 Shimada666

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].