반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- IOS
- webpack
- avds
- jest
- TensorFlow
- 리눅스
- VirtualBox
- vsCode
- 개발
- 네트워크
- node
- PYTHON
- Android
- 맥
- centos
- picker
- 센토스
- localserver
- ReactNative
- androidstudio
- MAC
- unittest
- xcode
- build
- Chrome
- react
- MachineLearning
- qunit
- linux
Archives
- Today
- Total
로메오의 블로그
[Vue + typescript] *.d.ts 파일 만들기 본문
반응형
<template>
<div></div>
</template>
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator'
import Cloud from 'vue-d3-cloud'
@Component({
components: {
Cloud
}
})
export default class DashboardView extends Vue {
}
</script>
vue-d3-cloud 라이브러리의 d.ts파일을 만들겠습니다.
tsconfig.json
{
"compilerOptions": {
...
"typeRoots": ["./types"],
"declaration": true,
"declarationDir": "./types",
...
}
types 폴더 정의합니다.
types 폴더에 vue-d3-cloud.d.ts 파일을 생성합니다.
declare module 'vue-d3-cloud' {
const Cloud: any
export default Cloud
}
반응형
'Frontend > Vue' 카테고리의 다른 글
[Vue + typescript] d3.js (0) | 2022.08.05 |
---|---|
[Vue + typescript] chart.js (0) | 2022.08.04 |
[Vue + typescript] filter 사용하기 (0) | 2022.06.22 |
[Vue + typescript] text editor 사용하기 - TOAST UI Editor for Vue (0) | 2022.06.16 |
[Vue + typescript] text editor 사용하기 - tiptap (0) | 2022.06.16 |
Comments