Kendo UI for Vue Native Buttons Overview
The Kendo UI for Vue Buttons package deliver components that represent the trigger for a simple action that user can take.
The Buttons package is part of the Kendo UI for Vue library which provides native Kendo UI for Vue components for the Vue ecosystem and are available under the kendo-vue-buttons NPM package.
Basic Usage
The following example demonstrates all components from the Buttons package in action.
Installation
To initialize the Buttons, either:
Using CDN
To use the Kendo UI for Vue Native Buttons with CDN, follow the below steps:
- Reference the
buttons
package.
<script src="https://unpkg.com/@progress/kendo-vue-buttons@latest/dist/cdn/js/kendo-vue-buttons.js"></script>
- Reference one of the Kendo UI themes to style your components.
// Load the Kendo Default Theme
<link rel="stylesheet" href="https://unpkg.com/@progress/kendo-theme-default@latest/dist/all.css">
// Load the Kendo Bootstrap Theme
<link rel="stylesheet" href="https://unpkg.com/@progress/kendo-theme-bootstrap@latest/dist/all.css">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
// To load the Kendo Material Theme
<link rel="stylesheet" href="https://unpkg.com/@progress/kendo-theme-material@latest/dist/all.css">
- Follow the instructions in this article to activate your product license. You can skip this step if your application already contains a license key.
Initializing with Webpack
-
Download and install the package. Use Node.js v5.0.0 or later.
npm install --save @progress/kendo-vue-buttons @progress/kendo-licensing
-
Once installed, import the package module.
// ES2015 module syntax import { Button, ButtonGroup, Chip, ChipList, DropDownButton, FloatingActionButton, SplitButton, Toolbar } from '@progress/kendo-vue-buttons';
// CommonJS format const { Button, ButtonGroup, Chip, ChipList, DropDownButton, FloatingActionButton, SplitButton, Toolbar } = require('@progress/kendo-vue-buttons');
-
You are required to install one of the Kendo UI for Vue themes to style your components. For more information on how to add the styles, refer to the article on getting started.
-
Follow the instructions on the Kendo UI for Vue My License page to activate your license. You can skip this step if your application already contains a Kendo UI for Vue license file.
Dependencies
The Buttons package requires you to install the following peer dependencies in your application:
- vue 2.6.11* or 3.0.0*
- @progress/kendo-licensing
Support and Learning Resources
- Button Homepage
- ButtonGroup Homepage
- Chip Homepage
- ChipList Homepage
- DropDownButton Homepage
- FloatingActionButton Homepage
- SplitButton Homepage
- ToolBar Homepage
- API Reference of the Buttons
- Getting Started with Kendo UI for Vue - JavaScript (Online Guide)
- Getting Started with Kendo UI for Vue - TypeScript (Online Guide)
- Getting Started with Kendo UI for Vue - JavaScript + Options API (Online Guide)
- Getting Started with Kendo UI for Vue - TypeScript + Options API (Online Guide)
- Getting Started with Kendo UI for Vue - Nuxt 3 (Online Guide)
- Virtual Classroom (Training Course for Registered Users)
- Kendo UI for Vue Forum
- Knowledge Base
- Kendo UI Productivity Tools extension for VS Code