我的 Typescript Next 項目中有這個組件import PageTitle from './pagetitle'import style from './contact.styl'export default function Contact() { return ( <section> <a name="contact"></a> <div className={style.container}> <PageTitle title='get in touch!'/> <form action=""> <input name="name" type="text" placeholder="name" /> <input name="subject" type="text" placeholder="subject" /> <textarea placeholder="message" /> <button type="submit">send</button> </form> </div> </section> );}這contact.styl看起來像是使用 Stylus CSS 預處理器的 CSS 文件,因此樣式拼寫沒有拼寫錯誤。我最近使用“next-env.d.ts”文件中的模塊聲明修復了一個錯誤.container width 95vw height 90vh display flex flex-direction column background rgba(43,43,43,.97) border-radius 60px margin 0 auto h3 font-size 22px color #d3ecf7form height 450px display flex flex-direction column justify-content space-evenly align-items center margin-top 3rem input, textarea width 355px box-shadow 0px 3px 6px #00000029 border-radius 13px outline none border none background #2b2b2b font normal normal 300 20px Avenir padding-top 5px text-align center color #fff input height 45px textarea height 200px resize none ::placeholder text-align center font normal normal 300 20px Avenir color #d3ecf7@media(max-width 760px) .container width 100vw height auto border-radius 0 form height 500px margin-top 0 input, textarea width 90vw但我一直收到這個錯誤?Type error: Property 'container' does not exist on type 'string'.誰能幫我找出原因嗎?編輯:添加contact.styl 找出問題所在Try to add an asterisk to the module name as in the updated example. **- Sergey**
Typescript 類型錯誤屬性不存在
回首憶惘然
2023-07-14 14:58:33