Light Dark System

Vue (version 2)

Vue plays nice with custom elements, so you can use Pure UI in your Vue apps with ease.

Installation

To add Pure UI to your Vue app, install the package from npm.

npm install pure-uikit

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.

import "pure-uikit/dist/themes/light.css";
import { setBasePath } from "pure-uikit/dist/utilities/base-path";

setBasePath("https://cdn.jsdelivr.net/npm/pure-uikit@1.2.15/cdn/");

Configuration

You’ll need to tell Vue to ignore Pure UI components. This is pretty easy because they all start with p-.

import Vue from "vue";
import App from "./App.vue";

Vue.config.ignoredElements = [/p-/];

const app = new Vue({
  render: h => h(App),
});

app.$mount("#app");

Now you can start using Pure UI components in your app!

Usage

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.

<p-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 -->
<p-input v-model="name"></p-input>
<!-- This works, but it's a bit longer -->
<p-input :value="name" @input="name = $event.target.value"></p-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 Pure UI components. To install it, use this command.

npm install pure-v-model@1.0.1

Next, import the directive and enable it like this.

import Vue from "vue";
import PureUIModelDirective from "pure-v-model";
import App from "./App.vue";

Vue.use(PureUIModelDirective);
Vue.config.ignoredElements = [/p-/];

const app = new Vue({
  render: h => h(App),
});

app.$mount("#app");

Now you can use the v-p-model directive to keep your data in sync!

<p-input v-p-model="name"></p-input>