webtides / element-js

Simple and lightweight base classes for web components with a beautiful API
MIT License
28 stars 3 forks source link

Create Warning on naming conflicts in Element Definition #124

Open quarkus opened 3 months ago

quarkus commented 3 months ago

create a warning log t alert developers that they are doing something wrong!

Example:

properties () {
return { events: {}}
}

events() {}

should produce a console.warn that prop overwrites the core function.