<template>
<div class="buttons-demo">
<div class="buttons">
<div>
<div class="buttons-column">
<div class="column-header">
Normal
</div>
<div>
<dx-button
:width="120"
text="Contained"
type="normal"
styling-mode="contained"
@click="onClick($event)"
/>
</div>
<div>
<dx-button
:width="120"
text="Outlined"
type="normal"
styling-mode="outlined"
@click="onClick($event)"
/>
</div>
<div>
<dx-button
:width="120"
text="Text"
type="normal"
styling-mode="text"
@click="onClick($event)"
/>
</div>
</div>
<div class="buttons-column">
<div class="column-header">
Success
</div>
<div>
<dx-button
:width="120"
text="Contained"
type="success"
styling-mode="contained"
@click="onClick($event)"
/>
</div>
<div>
<dx-button
:width="120"
text="Outlined"
type="success"
styling-mode="outlined"
@click="onClick($event)"
/>
</div>
<div>
<dx-button
:width="120"
text="Text"
type="success"
styling-mode="text"
@click="onClick($event)"
/>
</div>
</div>
</div>
<div>
<div class="buttons-column">
<div class="column-header">
Default
</div>
<div>
<dx-button
:width="120"
text="Contained"
type="default"
styling-mode="contained"
@click="onClick($event)"
/>
</div>
<div>
<dx-button
:width="120"
text="Outlined"
type="default"
styling-mode="outlined"
@click="onClick($event)"
/>
</div>
<div>
<dx-button
:width="120"
text="Text"
type="default"
styling-mode="text"
@click="onClick($event)"
/>
</div>
</div>
<div class="buttons-column">
<div class="column-header">
Danger
</div>
<div>
<dx-button
:width="120"
text="Contained"
type="danger"
styling-mode="contained"
@click="onClick($event)"
/>
</div>
<div>
<dx-button
:width="120"
text="Outlined"
type="danger"
styling-mode="outlined"
@click="onClick($event)"
/>
</div>
<div>
<dx-button
:width="120"
text="Text"
type="danger"
styling-mode="text"
@click="onClick($event)"
/>
</div>
</div>
</div>
</div>
</div>
</template>
<script>
import { DxButton } from 'devextreme-vue';
import notify from 'devextreme/ui/notify';
export default {
components: {
DxButton
},
methods: {
onClick(e) {
const buttonText = e.component.option('text');
notify(`The ${this.capitalize(buttonText)} button was clicked`);
},
capitalize(text) {
return text.charAt(0).toUpperCase() + text.slice(1);
}
}
};
</script>
<style scoped>
.demo-container {
display: flex;
justify-content: center;
height: 450px;
}
.buttons-demo {
width: 600px;
align-self: center;
}
.buttons-column > .column-header {
flex-grow: 0;
width: 150px;
height: 35px;
font-size: 130%;
opacity: 0.6;
text-align: left;
padding-left: 15px;
}
.buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.buttons > div {
width: 300px;
flex-wrap: nowrap;
display: flex;
}
.buttons-column > div {
width: 150px;
height: 50px;
text-align: center;
}
.buttons-column {
width: 150px;
justify-content: center;
}
</style>
import Vue from 'vue';
import App from './App.vue';
new Vue({
el: '#app',
components: { App },
template: '<App/>'
});
<!DOCTYPE html>
<html>
<head>
<title>DevExtreme Demo</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/19.2.4/css/dx.common.css" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/19.2.4/css/dx.light.css" />
<script src="https://unpkg.com/core-js@2.4.1/client/shim.min.js"></script>
<script src="https://unpkg.com/systemjs@0.21.3/dist/system.js"></script>
<script type="text/javascript" src="config.js"></script>
<script type="text/javascript">
System.import('./index.js');
</script>
</head>
<body class="dx-viewport">
<div class="demo-container">
<div id="app">
</div>
</div>
</body>
</html>
System.config({
transpiler: 'plugin-babel',
paths: {
'npm:': 'https://unpkg.com/'
},
map: {
vue: 'npm:vue@2.6.3/dist/vue.esm.browser.js',
'vue-loader': 'npm:dx-systemjs-vue-browser@latest/index.js',
'devextreme': 'npm:devextreme@19.2',
'devextreme-vue': 'npm:devextreme-vue@19.2',
jszip: 'npm:jszip@3.1.3/dist/jszip.min.js',
'quill': 'npm:quill@1.3.7/dist/quill.js',
'devexpress-diagram': 'npm:devexpress-diagram',
'devexpress-gantt': 'npm:devexpress-gantt',
'plugin-babel': 'npm:systemjs-plugin-babel@0/plugin-babel.js',
'systemjs-babel-build': 'npm:systemjs-plugin-babel@0/systemjs-babel-browser.js'
},
meta: {
'*.vue': {
loader: 'vue-loader'
}
},
packages: {
'devextreme-vue': {
main: 'index.js'
},
'devextreme': {
defaultExtension: 'js'
}
},
babelOptions: {
sourceMaps: false,
stage0: true
}
});