betal-fe 4.0.0 → 4.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/betal-fe.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -299,12 +299,12 @@ h("input", {
|
|
|
299
299
|
|
|
300
300
|
## 📖 Examples
|
|
301
301
|
|
|
302
|
-
Check out the [GitHub repository](https://github.com/
|
|
302
|
+
Check out the [GitHub repository](https://github.com/SherlockHolmes07/betal-fe) for complete examples including:
|
|
303
303
|
- Todo app
|
|
304
304
|
|
|
305
305
|
## 🤝 Contributing
|
|
306
306
|
|
|
307
|
-
Contributions are welcome! Visit the [GitHub repository](https://github.com/
|
|
307
|
+
Contributions are welcome! Visit the [GitHub repository](https://github.com/SherlockHolmes07/betal-fe) for contribution guidelines.
|
|
308
308
|
|
|
309
309
|
## 📄 License
|
|
310
310
|
|
package/dist/betal-fe.js
CHANGED
|
@@ -1117,11 +1117,12 @@ function defineComponent({ render, state, onMounted = emptyFunction, onUnmounted
|
|
|
1117
1117
|
|
|
1118
1118
|
const RouterLink = defineComponent({
|
|
1119
1119
|
render() {
|
|
1120
|
-
const { to } = this.props;
|
|
1120
|
+
const { to, ...rest } = this.props;
|
|
1121
1121
|
return h(
|
|
1122
1122
|
"a",
|
|
1123
1123
|
{
|
|
1124
1124
|
href: to,
|
|
1125
|
+
...rest,
|
|
1125
1126
|
on: {
|
|
1126
1127
|
click: (e) => {
|
|
1127
1128
|
e.preventDefault();
|