DCsunset / vuetify-markdown-editor

A Vue.js Component for editing and previewing markdown using Vuetify.js
MIT License
64 stars 17 forks source link

Only resizable editor's textarea vertically #18

Open jkpark opened 2 years ago

jkpark commented 2 years ago

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

DCsunset commented 2 years ago

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.