mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-15 10:43:12 +00:00
27 lines
504 B
Vue
27 lines
504 B
Vue
<template>
|
|
<section>
|
|
<md-avatar>
|
|
<img src="//placeimg.com/40/40/people/1" alt="People">
|
|
</md-avatar>
|
|
|
|
<md-avatar class="md-large">
|
|
<img src="//placeimg.com/64/64/people/2" alt="People">
|
|
</md-avatar>
|
|
|
|
<md-avatar class="md-avatar-icon">
|
|
<md-icon>home</md-icon>
|
|
</md-avatar>
|
|
|
|
<md-avatar class="md-avatar-icon md-large">
|
|
<md-icon>folder</md-icon>
|
|
</md-avatar>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
ready() {
|
|
|
|
}
|
|
};
|
|
</script>
|