mirror of
https://github.com/SARL-PACIFIC-ERP/odoo-sh-test.git
synced 2025-06-25 09:32:22 +00:00
16 lines
323 B
JavaScript
16 lines
323 B
JavaScript
/** @odoo-module **/
|
|
|
|
import { Component, useState } from "@odoo/owl";
|
|
|
|
export class Card extends Component {
|
|
static template = "awesome_owl.card";
|
|
static props = {
|
|
title: String,
|
|
slots: {
|
|
type: Object,
|
|
shape: {
|
|
default: true
|
|
},
|
|
}
|
|
};
|
|
} |