Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
@cabloy/front-quasar
Advanced tools
@cabloy/front-quasar is a vue3 framework with ioc container. With the support of ioc container, defining reactive states no longer needs ref/reactive
, nor ref.value
@cabloy/front-quasar has introduced the following distinct features for Vue3:
No ref/reactive
: With the support of ioc container, defining reactive states no longer needs ref/reactive
No ref.value
: Without ref
, naturally there is no need to write a lot of ref.value
Modularization
: In a large web business system, as the business grows and changes, it is also necessary to divide the system into relatively independent modules in order to avoid code bloating. This is why Cabloy-Front introduces modularizationref/reactive
, no ref.value
Define a reactive variable count
in the component and add two methods to modify its value
export class ControllerPageCounter {
count: number = 0;
inrement() {
this.count++;
}
decrement() {
this.count--;
}
}
Use count
in render class
export class RenderPageCounter {
render() {
return (
<div>
<div>count(ref): {this.count}</div>
<button onClick={() => this.inrement()}>Inrement</button>
<button onClick={() => this.decrement()}>Decrement</button>
</div>
);
}
}
Create a Counter
Bean to implement the logic of count
@Local()
export class Counter {
count: number = 0;
inrement() {
this.count++;
}
decrement() {
this.count--;
}
}
export class ControllerPageCounter {
@Use()
$$counter: Counter;
}
export class RenderPageCounter {
render() {
return (
<div>
<div>count(ref): {this.$$counter.count}</div>
<button onClick={() => this.$$counter.inrement()}>Inrement</button>
<button onClick={() => this.$$counter.decrement()}>Decrement</button>
</div>
);
}
}
Copyright (c) 2016-present, CabloyJS
FAQs
A vue3 quasar framework with ioc
The npm package @cabloy/front-quasar receives a total of 2 weekly downloads. As such, @cabloy/front-quasar popularity was classified as not popular.
We found that @cabloy/front-quasar demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.