This repository was archived by the owner on May 31, 2025. It is now read-only.
Replies: 1 comment
-
Definitely outside the scope of this project. Though you can already do something similar with Angular. @Component({
template: `
<div>{{text}}<div>
`,
styles: [`
:host {
color: red
}
`]
})
export class MyComponent extends ViewDef(() => {
const hello = use("Hello")
return {
text
}
}) {} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Wouldn't it be cool to have something similar to Vues
vue
files?Something like this:
I know that this would mean a lot of problems to solve first: like custom Webpack loaders, IDE or code editor support, etc.
Just wanted to share this idea to see what you think.
Beta Was this translation helpful? Give feedback.
All reactions