wangEditor 在vue中,如何使用自定义插件?
按照demo,给出的是单独的js,想应该是在html页面里面,直接使用的。
但是在vue中,直接import,是无效的
<template lang="html">
<div class="editor">
<div ref="toolbar" class="toolbar">
</div>
<div ref="editor" class="text">
</div>
</div>
</template>
<script>
import {myfun} from '@/components/wangEditor/wangEditor-fullscreen-plugin.js'
import '@/components/wangEditor/wangEditor-fullscreen-plugin.css'
甚至Vue整个都出错了。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
报错信息是什么
而且css应该在style内引用吧
``<style lang="scss" scoped>
@import "~@/styles/mixin.scss";``
或者你可以吧这两个文件直接在index.html里引用
看了下git 有npm的方式可以使用
https://github.com/wangeditor...