primevue-mirror/doc/theming/styled/ScaleDoc.vue

25 lines
387 B
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>
2024-03-30 23:15:56 +00:00
Lorem Ipsum.
2023-02-28 08:29:30 +00:00
</p>
</DocSectionText>
2024-01-30 08:16:35 +00:00
<DocSectionCode :code="code" hideToggleCode importCode hideStackBlitz />
2023-02-28 08:29:30 +00:00
</template>
<script>
export default {
data() {
return {
code: {
2023-09-22 12:54:14 +00:00
basic: `
html {
2023-02-28 08:29:30 +00:00
font-size: 14px;
2023-09-22 12:54:14 +00:00
}
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>