Vue3のSFC/tsxでcss modules を使うメモ
VueをTypeScriptで扱うにあたって、SFC/comosition apiでのtemplateの型に困りすぎてjsx記法を検討している。
tsxとして記述できるのは知っていたが、Vueが魔術的に解決している scoped な css はどうやるのかな? というのを確かめる必要があった。
結論から言うと、 SFCの<style>
をscoped
でなく module
として記述し、
setup
や render
関数の中で useCssModule()
を呼ぶことで <style>
内の宣言にアクセスできる。
以下の感じ。
<script lang="tsx">
import {defineComponent, PropType, useCssModule} from 'vue';
interface Props {
hoge : string
}
export const SampleComponent = defineComponent({
props : {
hoge : {
type : String as PropType<Props[`hoge`]>,
required: true
}
},
setup(props : Props){
const styles = useCssModule();
return ()=>{
return (
<div class={styles.sample} >
<h1> Sample { props.hoge } </h1>
</div>
);
};
}
})
</script>
<style module lang="scss">
.sample {
color: red;
}
</style>
vueの ref
と併せ、これで全体の操作感がちょっと前の 「React + tsx + mobx + css modules」 構成に近い書き味となった。
ならはじめからReactでいいのでは?というとそうかもしれない。
Author And Source
この問題について(Vue3のSFC/tsxでcss modules を使うメモ), 我々は、より多くの情報をここで見つけました https://qiita.com/NaotoFushimi/items/40ac60c89546b4c64049著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .