Ckeditor 5 Hashtag In Vue Js Complete Tutorial - FreeCodeBlog
Last updated: Jan 21, 2022
Ckeditor 5 hashtag (#) in vue js! Really? Yes. You can easily develop hashtag (#) system in vue js using ckeditor 5. Just follow bellow step slowly to using ckeditor 5 hashtag in vue js.

1. Install Ckeditor 5 Mention Plugin.
Before you start installing the ckeditor 5 mention plugin to develop a mention system in your vue js project, please make sure that your vue js project has an installed "@ckeditor/ckeditor5-build-classic": "^version"
and "@ckeditor/ckeditor5-vue": "^version"
editor. You must need to install ckeditor 5 mention plugin in your vue js project to make hashtag (#) system like #php.
npm install --save @ckeditor/ckeditor5-mention
2. Import Ckeditor 5 Hashtag Plugin.
Have you installed the ckeditor 5 hashtag (mention) plugin? Yes. Good, Now you need to import hashtag plugin in your project.
import Mention from '@ckeditor/ckeditor5-mention/src/mention';
3. Use Ckeditor 5 Mention Plugin.
I hope you have installed ckeditor 5 editor and mention plugin in your project. Now it's time to use mention system in ckeditor 5.
editorConfig: {
plugins: [ Mention,],
mention: {
feeds: [
{
marker: '#',
feed: [ '#php', '#laravel', '#vue',]
}
]
}
}
Okay so this is for today. See you again next tutorials. Thanks

My name is Masum Biswas. I'm a full stack developer. I live in Bangladesh and I love to write tutorials and tools that can help to other artisan. I am a big fan of PHP, Javascript, JQuery, Laravel, MySQL, VueJS, Tailwind CSS and Bootstrap from the early stage.
make show and hide password in laravel vue using laravel ui package. Sometimes, we may require to show hide password input field so, user can see w... Read More
Ckeditor 5 hashtag (#)! Are you ready to develop a hashtag (#) system in ckeditor 5. Yes. Okay then you must need to read this ckeditor 5 hashtag (... Read More
Ckeditor 5 mention (@)! Are you ready to implement a mention (@) system in ckeditor 5. Yes. Okay then you must need to read this ckeditor 5 mention... Read More
Sometimes you need to add vue multiselect third party package in your laravel 8 with vue 3 project. We have many third party (vue multiselect) to u... Read More
In this tutorial I will show you how we can create a laravel vue chat application using jetstream inertia pusher. You may use any version of larave... Read More