博文

目前显示的是 八月 14, 2024的博文

Scripting News: Wednesday, August 14, 2024

图片
Wednesday, August 14, 2024 If you don't buy the new rules for journalism because the liars will tell lies about you, the journalist -- well, you get that either way, no matter what you do, so I don't see the problem. And if you want people to trust you, you've got to tell the truth. Your reputation gets destroyed by their lies if you pass them through. Doctors can tell you to stop smoking to save your life and the tobacco companies will accuse them of lying or whatever and some people (such as myself, earlier in life) will continue to smoke. You still have to do what's right if you want people to trust you. # Harris makes me proud # I am so impressed with how well the new Democratic Party is running this campaign. Latest innovation, they're going to do at least one public rally during the convention, so everyone can be part of the celebration, and I plan to watch every minute of it. What I don't want to witness is what the journal

🔥 (#178) Reactive CSS and Context-Aware Components

图片
Hey all! This week is a slow one for me after last week's launch. I'm taking some time to do some refactoring, plan out my next projects, and enjoy August. Enjoy the tips! — Michael 🔥 Reactive CSS In Vue 3 we can use reactive values in our script block just like we can in the template block. < style scoped > .button { color: v-bind(buttonColor); } < / style > Behind the scenes, Vue uses CSS computed properties (aka CSS variables) scoped to each component. The CSS