Vue
Vue plays nice with custom elements, so you can use Cordwainer Elements in your Vue apps with ease.
These instructions are for Vue 3 and above. If you’re using Vue 2, please see the Vue 2 instructions.
Installation
To add Cordwainer Elements to your Vue app, install the package from npm.
npm install @cordwainer/cw-elements
Next, include a theme and set the base path for icons and other assets. In this example, we’ll import the light theme and use the CDN as a base path.
// main.js or main.ts import '@cordwainer/cw-elements/dist/themes/light.css'; import { setBasePath } from '@cordwainer/cw-elements/dist/utilities/base-path'; setBasePath('https://cdn.jsdelivr.net/npm/@cordwainer/cw-elements@1.1.1/cdn/');
If you’d rather not use the CDN for assets, you can create a build task that copies
node_modules/@cordwainer/cw-elements/dist/assets into a public folder in your app. Then you
can point the base path to that folder instead.
Configuration
If you haven’t configured your Vue.js project to work with custom elements/web components, follow the instructions here based on your project type to ensure your project will not throw an error when it encounters a custom element.
Now you can start using Cordwainer Elements components in your app!
Types
Once you have configured your application for custom elements, you should be able to use Cordwainer Elements
in your application without it causing any errors. Unfortunately, this doesn’t register the custom elements
to behave like components built using Vue. To provide autocomplete information and type safety for your
components, you can import the Cordwainer Elements Vue types into your tsconfig.json to get
better integration in your standard Vue and JSX templates.
{ "compilerOptions": { "types": ["@cordwainer/cw-elements/dist/types/vue"] } }
Usage
QR code generator example
<template> <div class="container"> <h1>QR code generator</h1> <cw-input maxlength="255" clearable label="Value" v-model="qrCode"></cw-input> <cw-qr-code :value="qrCode"></cw-qr-code> </div> </template> <script setup> import { ref } from 'vue'; import '@cordwainer/cw-elements/dist/components/qr-code/qr-code.js'; import '@cordwainer/cw-elements/dist/components/input/input.js'; const qrCode = ref(); </script> <style> .container { max-width: 400px; margin: 0 auto; } cw-input { margin: var(--cw-spacing-large) 0; } </style>
Binding Complex Data
When binding complex data such as objects and arrays, use the .prop modifier to make Vue bind
them as a property instead of an attribute.
<cw-color-picker :swatches.prop="mySwatches" />
Two-way Binding
One caveat is there’s currently no support for v-model on custom elements, but you can still achieve two-way binding manually.
<!-- ❌ This doesn't work --> <cw-input v-model="name"></cw-input> <!-- ✅ This works, but it's a bit longer --> <cw-input :value="name" @input="name = $event.target.value"></cw-input>
If that’s too verbose for your liking, you can use a custom directive instead.
This utility
adds a custom directive that will work just like v-model but for Cordwainer Elements
components.
Are you using Cordwainer Elements with Vue? Help us improve this page!
Slots
Slots in Cordwainer Elements/web components are functionally the same as basic slots in Vue. Slots can be
assigned to elements using the slot attribute followed by the name of the slot it is being
assigned to.
Here is an example:
<cw-drawer label="Drawer" placement="start" class="drawer-placement-start" :open="drawerIsOpen"> This drawer slides in from the start. <div slot="footer"> <cw-button variant="primary" @click=" drawerIsOpen = false">Close</cw-button> </div> </cw-drawer>