vue-material/src/docs/pages/Checkbox.vue

20 lines
257 B
Vue
Raw Normal View History

2016-08-03 06:32:30 +00:00
<template>
<section>
<h2 class="title">Checkbox</h2>
<md-checkbox>My beautiful checkbox</md-checkbox>
</section>
</template>
2016-08-04 03:11:23 +00:00
<style lang="scss" scoped>
section {
padding: 0 24px;
}
</style>
2016-08-03 06:32:30 +00:00
<script>
export default {
};
</script>