mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-05 14:04:44 +00:00
General improvements
This commit is contained in:
parent
211223dfe9
commit
a88e685167
3 changed files with 5 additions and 3 deletions
|
|
@ -49,6 +49,7 @@
|
|||
.md-select-value {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding-right: 24px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
</div>
|
||||
|
||||
<div v-md-theme="'teal'">
|
||||
<md-checkbox id="my-test4" name="my-test4">Really simple</md-checkbox>
|
||||
<md-checkbox id="my-test4" name="my-test4" v-model="checkbox2">Really simple</md-checkbox>
|
||||
</div>
|
||||
|
||||
<div v-md-theme="'teal'">
|
||||
|
|
@ -40,7 +40,8 @@
|
|||
export default {
|
||||
data() {
|
||||
return {
|
||||
checkbox: true
|
||||
checkbox: true,
|
||||
checkbox2: false
|
||||
};
|
||||
}
|
||||
};
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div v-md-theme="'bottom-bar'">
|
||||
<div v-md-theme="'teal'">
|
||||
<div class="cell-phone scrollable">
|
||||
<md-toolbar>
|
||||
<h2 class="md-title">Normal - Triple Line</h2>
|
||||
|
|
|
|||
Loading…
Reference in a new issue