Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
@cfcs/vue2
Advanced tools
Write once, create framework components that supports React, Vue, Svelte, and more.
Write once, create framework components that supports React, Vue, Svelte, and more.
# >= 2.7
$ npm install @cfcs/vue3
# < 2.7
$ npm install @cfcs/vue2
Use @vue/composition-api
if you are going to use it in Vue 2.
Vue 2 Component can be written by using useReactive
through REACTIVE_ADAPTER
(made with @cfcs/core) constant.
import { reactive } from "@cfcs/core";
const REACTIVE_ADAPTER = ({
emit,
onInit,
setEvents,
setMethods,
}) => {
setEvents(["event1"]);
setEvents(["method1"]);
const obj = reactive({
value1: 1,
method1() {
console.log("method1");
},
});
const inst = new YourModule();
onInit(() => {
requestAnimationFrame(() => {
value1.current = 2;
// emit `event1` event externally
emit("event1", e);
});
});
// Returns a reactive value.
return obj;
};
import { REACTIVE_ADAPTER } from "your-module";
import { useReactive, ReactiveAdapterResult } from "@cfcs/vue2";
// The result value of useReactive can be exposed as a type.
export type ReactiveComponentResult = ReactiveAdapterResult<typeof REACTIVE_ADAPTER>;
// Reactive Component can be created through useReactive.
export function useReactiveComponent(props) {
return useReactive(REACTIVE_ADAPTER, () => props);
}
<script>
export default {
setup() {
const {
// state
value1,
// events
onEvent1,
// methods
method1,
} = useReactiveComponent({});
// use state
console.log(value1.value);
// use event
onEvent1(e => {
console.log(e);
};
// use method
method1();
},
};
</script>
Please file an Issue.
cfcs
is released under the MIT license.
CFCs
Copyright (c) 2023-present NAVER Corp.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
FAQs
Write once, create framework components that supports React, Vue, Svelte, and more.
We found that @cfcs/vue2 demonstrated a not healthy version release cadence and project activity because the last version was released 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.