Skip to content

Commit becd639

Browse files
committed
chore: updated script tag
1 parent 5e13238 commit becd639

19 files changed

+19
-19
lines changed

content/1.getting-started/3.usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Transform Vue components into HTML email templates.
1010
You can start building your email template in a `.vue` or `.ts` file.
1111

1212
```vue
13-
<script setup>
13+
<script setup lang="ts">
1414
import { Button, Hr, Html, Text } from '@vue-email/components'
1515
1616
defineProps({

content/2.components/1.html.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ npm install @vue-email/html
3333
Add the component to your email template. Include styles where needed.
3434

3535
```vue
36-
<script setup>
36+
<script setup lang="ts">
3737
import { Html, Button } from '@vue-email/components'
3838
</script>
3939

content/2.components/1.tailwind.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ npm install @vue-email/tailwind
3333
Add the component to your email template. Include styles where needed.
3434

3535
```vue
36-
<script setup>
36+
<script setup lang="ts">
3737
import { Tailwind, Button } from "@vue-email/components";
3838
</script>
3939

content/2.components/11.heading.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ npm install @vue-email/heading
3333
Add the component to your email template. Include styles where needed.
3434

3535
```vue
36-
<script setup>
36+
<script setup lang="ts">
3737
import { Heading } from '@vue-email/components'
3838
</script>
3939

content/2.components/12.hr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Add the component to your email template. Include styles where needed.
3434

3535

3636
```vue
37-
<script setup>
37+
<script setup lang="ts">
3838
import { Hr } from '@vue-email/components'
3939
</script>
4040

content/2.components/13.image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ npm install @vue-email/img
3333
Add the component to your email template. Include styles where needed.
3434

3535
```vue
36-
<script setup>
36+
<script setup lang="ts">
3737
import { Img } from '@vue-email/components'
3838
</script>
3939

content/2.components/14.link.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ npm install @vue-email/link
3333
Add the component to your email template. Include styles where needed.
3434

3535
```vue
36-
<script setup>
36+
<script setup lang="ts">
3737
import { Link } from '@vue-email/components'
3838
</script>
3939

content/2.components/15.markdown.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ npm install @vue-email/markdown
3333
Add the component to your email template. Include styles where needed.
3434

3535
```vue
36-
<script setup>
36+
<script setup lang="ts">
3737
import { Markdown, Html } from "@vue-email/components";
3838
3939
const md = `# Hello, World!`

content/2.components/16.preview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ npm install @vue-email/preview
3737
Add the component to your email template. Include styles where needed.
3838

3939
```vue
40-
<script setup>
40+
<script setup lang="ts">
4141
import { Preview } from '@vue-email/components'
4242
</script>
4343

content/2.components/17.section.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ npm install @vue-email/section
3333
Add the component to your email template. Include styles where needed.
3434

3535
```vue
36-
<script setup>
36+
<script setup lang="ts">
3737
import { Section, Column, Row, Text } from "@vue-email/components";
3838
</script>
3939

0 commit comments

Comments
 (0)