We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"tiptap-vuetify": "^2.24.0"
In my component:
<tiptap-vuetify id="editor1" placeholder="Preconditions" :extensions="extensions" </tiptap-vuetify>
In script:
import { TiptapVuetify, Heading, Bold, Italic, Strike, Underline, Code, Paragraph, BulletList, OrderedList, ListItem, Link, Blockquote, HardBreak, HorizontalRule, History } from 'tiptap-vuetify'
components: { TiptapVuetify },
in data:
extensions: [ History, Blockquote, Link, Underline, Strike, Italic, ListItem, BulletList, OrderedList, [Heading, { options: { levels: [1, 2, 3] } }], Bold, Link, Code, HorizontalRule, Paragraph, HardBreak ],
in main.ts
main.ts
import { TiptapVuetifyPlugin } from 'tiptap-vuetify' import 'tiptap-vuetify/dist/main.css' import 'vuetify/dist/vuetify.min.css' import vuetify from './plugins/vuetify'; Vue.use(vuetify) Vue.use(TiptapVuetifyPlugin, { vuetify, iconsGroup: 'md' })
The text was updated successfully, but these errors were encountered:
There is a typo in the docs for the icon group
@mcat56 In main.ts iconsGroup: 'mdi' instead of iconsGroup: 'md'
iconsGroup: 'mdi'
iconsGroup: 'md'
Sorry, something went wrong.
@szabomikierno thank you! that did it!
No branches or pull requests
"tiptap-vuetify": "^2.24.0"
In my component:
In script:
in data:
in
main.ts
The text was updated successfully, but these errors were encountered: