Quick question. So I can create CSS that isn't SCSS (and scoped to each component). That's very workable. However, how can I assign properties, data, methods, etc. to my components when they are .js files (.vue can include these things, but I'm trying to avoid npm as your solution does).
Can you paste in an example of the contents of a simple component implementation that has data like an array and property associated with it? In your example stuff there is const with HTML and then an export, but looking for the syntax that's more like what's in a Vue file
Quick question. So I can create CSS that isn't SCSS (and scoped to each component). That's very workable. However, how can I assign properties, data, methods, etc. to my components when they are .js files (.vue can include these things, but I'm trying to avoid npm as your solution does).
I'm glad you have your CSS down.
You are able to use anything you expect in the .js file that you could do with any Vue component.
If you find something that doesn't work, I would like to know.
I've tested this extensively. I've put watchers, computed, event listeners, and child components.
Does that answer your question?
Can you paste in an example of the contents of a simple component implementation that has data like an array and property associated with it? In your example stuff there is const with HTML and then an export, but looking for the syntax that's more like what's in a Vue file
A very large example from a personal project:
github.com/arswaw/happyweather/blo...
Another example with props and child components:
github.com/arswaw/happyweather/blo...
I even have an example of mixin use. I will have to find it.
Yes, that's perfect! Thank you!!