17 lines
326 B
Vue
17 lines
326 B
Vue
|
|
<script>
|
||
|
|
import BaseComponent from '@primevue/core/basecomponent';
|
||
|
|
import CardStyle from 'primevue/card/style';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
name: 'BaseCard',
|
||
|
|
extends: BaseComponent,
|
||
|
|
style: CardStyle,
|
||
|
|
provide() {
|
||
|
|
return {
|
||
|
|
$pcCard: this,
|
||
|
|
$parentInstance: this
|
||
|
|
};
|
||
|
|
}
|
||
|
|
};
|
||
|
|
</script>
|