mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-08 15:34:43 +00:00
15 lines
280 B
Vue
15 lines
280 B
Vue
<template>
|
|
<i class="md-icon material-icons" :class="[themeClass]">
|
|
<slot></slot>
|
|
</i>
|
|
</template>
|
|
|
|
<style lang="scss" src="./mdIcon.scss"></style>
|
|
|
|
<script>
|
|
import theme from '../../core/components/mdTheme/mixin';
|
|
|
|
export default {
|
|
mixins: [theme]
|
|
};
|
|
</script>
|