odoo-tutorials/awesome_owl/static/src/card/card.js
2024-08-21 16:41:01 -10:00

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
},
}
};
}