Vue Dash Event

The library function, implemented in the DOM template, can use the custom event of the ant-design-vue component (camelCase)
Alternatives To Vue Dash Event
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Learnvue12,190
8 months ago20JavaScript
:octocat:Vue.js 源码解析
Vue Virtual Scroller8,54117335715 days ago83February 06, 2023195Vue
⚡️ Blazing fast scrolling for any amount of data
Vue Analysis7,474
2 months ago67mitJavaScript
:thumbsup: Vue.js 源码分析
Spritejs5,24662912 days ago432December 13, 202268mitJavaScript
A cross platform high-performance graphics system.
Portal Vue3,7841,5603642 months ago43December 11, 202238mitVue
A feature-rich Portal Plugin for Vue 3, for rendering DOM outside of a component, anywhere in your app or the entire document. (Vue 2 version: v2.portal-vue.linusb.org)
Happy Dom2,34941,49917 hours ago414August 22, 2023104mitTypeScript
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
Vue Tour2,163482210 months ago13March 28, 202163mitVue
Vue Tour is a lightweight, simple and customizable guided tour plugin for use with Vue.js. It provides a quick and easy way to guide your users through your application.
Vue22,001
3 years ago4JavaScript
小白入坑vue三部曲,关于 vue 在工作的使用问题总结,请看博客 https://sunseekers.github.io/ 一直保持更新
Fe1,864
7 months ago87JavaScript
前端 100 天,帮助 10W 人入门并进阶前端。
Knowledge1,782
7 months ago1JavaScript
文档着重构建一个完整的「前端技术架构图谱」,方便 F2E(Front End Engineering又称FEE、F2E) 学习与进阶。
Alternatives To Vue Dash Event
Select To Compare


Alternative Project Comparisons
Readme

vue-dash-event

The library function, implemented in the DOM template, can use the custom event of the ant-design-vue component (camelCase)

NPM version NPM downloads

Usage

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/index.min.js"></script>
<script>
Vue.use(window['vue-dash-event'])
</script>

Why

If you not use DOM templates, You don't need this plugin.

Unlike components and props, event names don’t provide any automatic case transformation. Instead, the name of an emitted event must exactly match the name used to listen to that event. For example, if emitting a camelCased event name:

this.$emit('myEvent')

Listening to the kebab-cased version will have no effect:

<my-component v-on:my-event="doSomething"></my-component>

Unlike components and props, event names will never be used as variable or property names in JavaScript, so there’s no reason to use camelCase or PascalCase. Additionally, v-on event listeners inside DOM templates will be automatically transformed to lowercase (due to HTML’s case-insensitivity), so v-on:myEvent would become v-on:myevent – making myEvent impossible to listen to.

But ant-design-vue use camelCase for event names. In order to properly monitor the internal camelCase events of the component. If you use DOM templates, you must use <my-component v-on:my-event="doSomething"></my-component> and Vue.use(window['vue-dash-event']). Then component will monitor the internal camelCase events of the component.

Popular Dom Projects
Popular Vue Projects
Popular Web User Interface Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Javascript
Vue
Dom
Ant
Names