Skip to content

Commit

Permalink
Merge pull request #20470 from chakAs3/vuerender-cli-ts-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ndelangen authored Jan 15, 2023
2 parents 7ababb0 + e58ae95 commit af0578d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions code/renderers/vue3/template/cli/ts-legacy/Button.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
</template>

<script lang="ts" setup>
import "./buttons.css"
import { computed } from 'vue';
type Props = {
label: string,
Expand Down
1 change: 1 addition & 0 deletions code/renderers/vue3/template/cli/ts/Button.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
</template>

<script lang="ts" setup>
import './button.css';
import { computed } from 'vue';
type Props = {
label: string,
Expand Down

0 comments on commit af0578d

Please sign in to comment.