Vue로 Js에서 외부 Js의 쓰기 방식을 정적 동적으로 읽기
5168 단어 EXPORTJavaScriptImportVue.js
예문
index.vue<template>
<div>
<p>{{ msg }}</p>
</div>
</template>
<script>
import { t3m1 } from './t3'
export default {
name: 'test',
data () {
return {
msg: 'you are ok.'
}
},
mounted () {
t3m1()
}
}
</script>
t1.jsconst t1m1 = function () {
console.log('t1m1 ok')
}
function t1m2 () {
console.log('t1m2 ok')
}
export { t1m1, t1m2 }
t2.jsconst t2 = {}
t2.t2m1 = function () {
console.log('t2m1 ok')
}
t2.t2m2 = function () {
console.log('t2m2 ok')
}
export default { t2 }
t3.js// 外部Jsを静的に読み込む書き方
import t2 from './t2'
function t3m1 () {
console.log('t3m1 ok')
// 外部Jsを動的に読み込む書き方
import('./t1.js').then((t1) => {
t1.t1m1()
})
t2.t2.t2m1()
}
export { t3m1 }
실행 결과
Reference
이 문제에 관하여(Vue로 Js에서 외부 Js의 쓰기 방식을 정적 동적으로 읽기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/gakuseikai/items/fec6967c95c82e600f48
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
<template>
<div>
<p>{{ msg }}</p>
</div>
</template>
<script>
import { t3m1 } from './t3'
export default {
name: 'test',
data () {
return {
msg: 'you are ok.'
}
},
mounted () {
t3m1()
}
}
</script>
const t1m1 = function () {
console.log('t1m1 ok')
}
function t1m2 () {
console.log('t1m2 ok')
}
export { t1m1, t1m2 }
const t2 = {}
t2.t2m1 = function () {
console.log('t2m1 ok')
}
t2.t2m2 = function () {
console.log('t2m2 ok')
}
export default { t2 }
// 外部Jsを静的に読み込む書き方
import t2 from './t2'
function t3m1 () {
console.log('t3m1 ok')
// 外部Jsを動的に読み込む書き方
import('./t1.js').then((t1) => {
t1.t1m1()
})
t2.t2.t2m1()
}
export { t3m1 }
Reference
이 문제에 관하여(Vue로 Js에서 외부 Js의 쓰기 방식을 정적 동적으로 읽기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/gakuseikai/items/fec6967c95c82e600f48텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)