What about additional data option?
See original GitHub issueIt would be nice to be able to pass additional data. Maybe it can be look like (createVueInstance.js
):
function beforeCreate() {
if (options.additionalData && typeof options.additionalData === 'object') {
Object.keys(options.additionalData).forEach((key) => {
this[key] = options.additionalData[key];
});
}
// this.$emit...
}
Issue Analytics
- State:
- Created 6 years ago
- Comments:10 (4 by maintainers)
Top Results From Across the Web
Adding additional data to select options using jQuery
I would like to be able to do something like <option value="3.1" value2="3.2">other</option> and get the value of the value2 attribute (which ...
Read more >HTML option data-* Attribute - Dofactory
A data-* attribute on an <option> tag attaches additional data to the option item. To create a custom attribute, replace * with a...
Read more >View or change cellular data settings on iPhone - Apple Support
You can turn cellular data and roaming on or off, set which apps and services use cellular data, see cellular data usage, and...
Read more >Check your mobile plan & buy mobile data on Android
Tip: If you get a notification that you're low on data, tap Add more data. Your "Mobile data plan" setting will open. Fix...
Read more >Additional Data Options With DAP - Digital.gov
If you have your own additional implementation of Google Analytics (GA), you may have a bit more flexibility in configuring the settings.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi, it’s working for me, even when using *.vue files. Checked only one method - https://www.webpackbin.com/bins/-L0j0CbM7ZdarC67o7Mp
ok, thanks!