mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 17:02:38 +00:00
10 lines
208 B
Vue
10 lines
208 B
Vue
<script>
|
|
import BaseComponent from 'primevue/basecomponent';
|
|
import CardStyle from 'primevue/card/style';
|
|
|
|
export default {
|
|
name: 'BaseCard',
|
|
extends: BaseComponent,
|
|
style: CardStyle
|
|
};
|
|
</script>
|