mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:31:19 +08:00
feat: utilize typescript in Vue 3 example files
This commit is contained in:
parent
da695b1a42
commit
0e607c6da1
@ -2,7 +2,7 @@
|
||||
<button type="button" :class="classes" @click="onClick" :style="style">{{ label }}</button>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
<script lang="typescript">
|
||||
import './button.css';
|
||||
import { reactive, computed } from 'vue';
|
||||
|
||||
@ -32,7 +32,7 @@ export default {
|
||||
|
||||
emits: ['click'],
|
||||
|
||||
setup(props, { emit }) {
|
||||
setup(props: any, { emit }: any) {
|
||||
props = reactive(props);
|
||||
return {
|
||||
classes: computed(() => ({
|
||||
|
@ -29,7 +29,7 @@
|
||||
</header>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
<script lang="typescript">
|
||||
import './header.css';
|
||||
import MyButton from './Button.vue';
|
||||
|
||||
|
@ -58,7 +58,7 @@
|
||||
</article>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
<script lang="typescript">
|
||||
import './page.css';
|
||||
import MyHeader from './Header.vue';
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "esnext",
|
||||
"module": "esnext",
|
||||
"module": "commonjs",
|
||||
"strict": true,
|
||||
"jsx": "preserve",
|
||||
"importHelpers": true,
|
||||
|
Loading…
x
Reference in New Issue
Block a user