Skip to main content

Posts

Showing posts with the label vue3

Vue-Multiselect Tagging and Filters | Vue 2 & 3

Install the NPM if you are not installed in your project directory.   npm install vue - multiselect -- save Multi-select Tagging:- You can set the :taggable prop to true to add tagging functionality in a single or multiple selects and selecting this temporary option will emit the @tag event with the current typed search query as the first param. Optional configuration flags :- 1.       tag-placeholder="Add this as new tag" , it is a tag suggestion message 2.       tag-position="bottom" ,   it is tag position   and it will be set to 'top' or 'bottom' and the default tag position is top. An example is details - user-json object:- [     { "name" : "Anil Singh" , "code" : "Ak" },     { "name" : "Reena Singh" , "code" : "RS" },     { "name" : "Aradhya Singh" , "code" : "AS" } ] ...

What’s New in Vue CLI 3.0?

An overview of the latest Vue-CLI version and why you should we use next project? The List of Vue CLI 3.0 features :- 1.       It is totally plug-in-based. 2.       Zero configuration by default, so you spend all your time on development. 3.       You can make your own plug-in and presets. 4.       Configure everything without ejecting making upgrading really seamless. How to Install Vue CLI 3.0? The Vue CLI version 3 NPM command is - npm install -g @vue/cli Also explore - What’s New in Vue 3.0?