Skip to content
New issue

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

Is this abandoned? #803

Open
Yaro77 opened this issue Dec 4, 2024 · 0 comments
Open

Is this abandoned? #803

Yaro77 opened this issue Dec 4, 2024 · 0 comments

Comments

@Yaro77
Copy link

Yaro77 commented Dec 4, 2024

I got tired of my Vue projects and I'm thinking of building more classic SSR apps (anyway Asp.net core backend is mandatory in the company I work for).
So I've discovered for myself Stimulus recently and started to play with it.

<button data-controller="counter" data-action="counter#increment">Count is 0</div>

with controller

export default class extends Controller {
  static values = {
    count: {
      type: Number,
    }
  };

  increment() {
    this.element.innerHTML = `Count is ${this.countValue}`;
  }
};

and it works.
Wait, I didn't set the data-counter-count-value or default in the static values count definitions.
Then I checked hasCountValue and it returns true. So I guessed I found a bug.
I checked the Issues and found one #772. Then I checked the repo, there's no tests (Edit: I was wrong here). And a lot of unmerged pull-requests.

My question: Is this project abandoned?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant