Skip to content

Commit

Permalink
uses anonymous function in documentation due to failures in character…
Browse files Browse the repository at this point in the history
… escaping
  • Loading branch information
akolson committed Oct 5, 2022
1 parent ad681dd commit 078c000
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/pages/kresponsivewindow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
<p>
Try adjusting your browser window size to see the example in action.
</p>
</DocsPageSection>ßßßß
</DocsPageSection>

<DocsPageSection title="Composable Example" anchor="#composable-example">
<p>
Expand All @@ -139,7 +139,7 @@
setup() {
...

const boxStyle = computed(() => {
const boxStyle = computed(function () {
return { display: windowIsLarge.value ? 'inline-block' : 'block' };
});

Expand Down

0 comments on commit 078c000

Please sign in to comment.