72 lines
2.6 KiB
Vue
Executable File
72 lines
2.6 KiB
Vue
Executable File
<template>
|
|
<div>
|
|
<Head>
|
|
<Title>Vue RadioButton Component</Title>
|
|
<Meta name="description" content="RadioButton is an extension to standard radio button element with theming." />
|
|
</Head>
|
|
|
|
<div class="content-section introduction">
|
|
<div class="feature-intro">
|
|
<h1>RadioButton</h1>
|
|
<p>RadioButton is an extension to standard radio button element with theming.</p>
|
|
</div>
|
|
<AppDemoActions />
|
|
</div>
|
|
|
|
<div class="content-section implementation">
|
|
<div class="card">
|
|
<h5>Basic</h5>
|
|
<div class="field-radiobutton">
|
|
<RadioButton v-model="city" inputId="city1" name="city" value="Chicago" />
|
|
<label for="city1">Chicago</label>
|
|
</div>
|
|
<div class="field-radiobutton">
|
|
<RadioButton v-model="city" inputId="city2" name="city" value="Los Angeles" />
|
|
<label for="city2">Los Angeles</label>
|
|
</div>
|
|
<div class="field-radiobutton">
|
|
<RadioButton v-model="city" inputId="city3" name="city" value="New York" />
|
|
<label for="city3">New York</label>
|
|
</div>
|
|
<div class="field-radiobutton">
|
|
<RadioButton v-model="city" inputId="city4" name="city" value="San Francisco" />
|
|
<label for="city4">San Francisco</label>
|
|
</div>
|
|
|
|
<h5>Dynamic Values, Preselection, Value Binding and Disabled Option</h5>
|
|
<div v-for="category of categories" :key="category.key" class="field-radiobutton">
|
|
<RadioButton v-model="selectedCategory" :inputId="category.key" name="category" :value="category.name" :disabled="category.key === 'R'" />
|
|
<label :for="category.key">{{ category.name }}</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<RadioButtonDoc />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import RadioButtonDoc from './RadioButtonDoc';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
city: null,
|
|
categories: [
|
|
{ name: 'Accounting', key: 'A' },
|
|
{ name: 'Marketing', key: 'M' },
|
|
{ name: 'Production', key: 'P' },
|
|
{ name: 'Research', key: 'R' }
|
|
],
|
|
selectedCategory: null
|
|
};
|
|
},
|
|
created() {
|
|
this.selectedCategory = this.categories[1].name;
|
|
},
|
|
components: {
|
|
RadioButtonDoc: RadioButtonDoc
|
|
}
|
|
};
|
|
</script>
|