# Cards

Cards can be used for display data:

const myschema = {
    fieldname: {
        type: 'string',
        attrs: {
            label: 'Name',
        },
    }
};

const myvalues = {
    fieldname: 'test123',
};
<reforms-card :schema="myschema" :values="myvalues" />

Cards work only with schema. If you don't need this use <reforms-output>

Last Updated: 3/9/2021, 3:35:12 PM