mirror of
https://github.com/withastro/astro.git
synced 2025-01-27 22:19:04 -05:00
dea1a6dfc9
* chore: update defaults in docs * chore: update config defaults * test: update tests to config defaults * chore: update gitignore to new defaults * docs: update readme to new defaults * chore: update examples to new defaults * chore: update default exclude in lang server * chore: update tests * test: fix failing tests * chore: update www defaults
15 lines
189 B
Vue
15 lines
189 B
Vue
<template>
|
|
<h2 class="content-title">
|
|
{{ title }}
|
|
</h2>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
}
|
|
}
|
|
</script>
|