Riot.jsv3(IE 11)와 v6(IE 11 비대응)의 표기법이 다르다
4835 단어 riot.js
version 3 (v3.13.2)
항목
v3
v6
IE9 지원
(확인 필요)
×
IE11 지원
〇
×
commpile 지정
필요 없다
×필요하다
type 이름 지정
<script src="a.htm" type="riot/tag"></script>
<script src="a.htm" type="riot"></script>
태그의 script가능하다, ~할 수 있다,...
×불가능
<script src="my-sample.htm" type="riot/tag"></script>
<script>
riot.mount('sample')
</script>
version6의 쓰기<script src="my-sample.htm" type="riot"></script>
<script>
(async function main() {
await riot.compile()
riot.mount('sample')
}())
</script>
version3의 예
index.html
<sample />
<script src="my-sample.htm" type="riot/tag"></script>
<script src="//unpkg.com/riot@3/riot+compiler.min.js"></script>
<script>
riot.mount('sample')
</script>
my-sample.htm<sample>
<h1>ハロワ4</h1>
<h2>ハロワ5</h2>
</sample>
version 6 (v6.0.1)
문서
https://github.com/riot/riot/releases
견본
<sample />
<script src="my-sample.htm" type="riot"></script>
<script src="//unpkg.com/riot@6/riot+compiler.min.js"></script>
<script>
(async function main() {
await riot.compile()
riot.mount('sample')
}())
</script>
my-sample.htm<sample>
<h1>ハロワ4</h1>
<h2>ハロワ5</h2>
</sample>
Reference
이 문제에 관하여(Riot.jsv3(IE 11)와 v6(IE 11 비대응)의 표기법이 다르다), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/tukiyo3/items/76f8c0c19d2dce4d70bb텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)