vuetify-markdown-editor icon indicating copy to clipboard operation
vuetify-markdown-editor copied to clipboard

Only resizable editor's textarea vertically

Open jkpark opened this issue 3 years ago • 1 comments

this issue apears in Vuetify version 2.6.0 image

my package-lock.json

"packages": {
    "": {
      "name": "my-app",
      "version": "0.1.0",
      "dependencies": {
        "core-js": "^3.8.3",
        "vue": "^2.6.14",
        "vue-router": "^3.5.1",
        "vuetify": "^2.6.0",
        "vuetify-markdown-editor": "^3.3.3",
        "vuex": "^3.6.2"
      },

MdTest.Vue

<template>
  <div>
    
    <Editor v-model="tcData" />
  </div>
</template>

<script>
import { Editor } from "vuetify-markdown-editor";

export default {
  name: 'MdTest',
  components: {
    Editor,
  },
  data() {
    return {
      tcData: "",
    };
  },
}
</script>

Originally posted by @jkpark in https://github.com/DCsunset/vuetify-markdown-editor/issues/8#issuecomment-1096315062

jkpark avatar Apr 12 '22 08:04 jkpark

Hi, if it's a problem in Vuetify, can you try a newer version of it to see whether it can fix this issue? Then I can bump the version in the package.json to fix it.

DCsunset avatar Apr 16 '22 15:04 DCsunset