Skip to content

Instantly share code, notes, and snippets.

View mvind's full-sized avatar
📈
coding

mvind

📈
coding
  • Copenhagen
View GitHub Profile
@mvind
mvind / image_resize.vue
Created June 26, 2020 03:54
Custom node for creating an resizable image in tiptap.
template>
<span id="outer" :style="outerStyle" @click="toggleActive">
<img id="img1" v-bind:src="node.attrs.src" style=" width: 100%;"/>
<span id="handle" :style="handleStyle" @mousedown.prevent="handleMouseDown($event)"></span>
</span>
</template>
<script>
export default {