
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
@anywhere-ui/vue
Advanced tools
AnywhereUI integration for Vue 3 apps.
@anywhere-ui/vue combines the core AnywhereUI experience with the tooling and APIs that are tailored to Vue 3 Developers.
These are AnywhereUI Web Components specifically build for Vue 3.
The css dependencies should be imported in main.js
or if use typescript main.ts
file
import "@anywhere-ui/core/dist/anywhere-ui/anywhere-ui.css";
Add this package to your project:
npm install @anywhere-ui/vue
Or:
yarn add @anywhere-ui/vue
Edit the main.js
or if use typescript main.ts
file like this:
import { createApp } from "vue";
import App from "./App.vue";
import { AnywhereUIVue } from "@anywhere-ui/vue";
const app = createApp(rootComponent)
.use(AnywhereUIVue as any)
.use(router);
router.isReady().then(() => {
app.mount("#app");
});
Import the component(s) you want to use:
import { AnyCheckbox } from "@anywhere-ui/vue";
Use it in your template as any Vue component:
<AnyCheckbox checked="true" label="Vue"></AnyCheckbox>
AnywhereUI Config provides a way to change the properties of components globally across an app. It can set the ripple effect, app mode, animations, and more.
To override the initial AnywhereUI config for the app, provide your config object as an additional parameter when installing the AnywhereUIVue
plugin:
import { AnywhereUIVue } from "@anywhere-ui/vue";
createApp(App).use(AnywhereUIVueVue as any, {
rippleEffect: false,
});
Below is a list of config options that AnywhereUI uses.
Config | Type | Default | Description |
---|---|---|---|
rippleEffect | boolean | true | If true adds ripple effect to the components. |
npm run build
FAQs
AnywhereUI integration for Vue apps.
We found that @anywhere-ui/vue 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.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.