We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I copy pasted the example of the home page of marko, but it didn't work. The command I use is npx @marko/serve . or npx @marko/serve index.marko.
npx @marko/serve .
npx @marko/serve index.marko
class { onCreate() { this.state = { count: 0 }; } increment() { this.state.count++; } } style { .count { color: #09c; font-size: 3em; } .example-button { font-size: 1em; padding: 0.5em; } } <div.count> ${state.count} </div> <button.example-button on-click("increment")> Click me! </button>
Also, consize syntax doesn't work: a simple template like h1 -- hello wouldn't work either.
h1 -- hello
The text was updated successfully, but these errors were encountered:
It works fine when you install @marko/serve as an npm package and run marko-serve
@marko/serve
marko-serve
Sorry, something went wrong.
No branches or pull requests
I copy pasted the example of the home page of marko, but it didn't work.
The command I use is
npx @marko/serve .
ornpx @marko/serve index.marko
.Also, consize syntax doesn't work: a simple template like
h1 -- hello
wouldn't work either.The text was updated successfully, but these errors were encountered: