v-bind的绑定属性 绑定基本属性 01_v-bind的基本使用.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <
百度试题 结果1 题目在Vue中,要动态绑定一个样式对象到元素上,可以使用哪种语法? A. @style="styleObject" B. v-bind:style="styleObject" C. v-style="styleObject" D. {{ }} 相关知识点: 试题来源: 解析 B
-- 1.v-bind的基本使用 --> 百度一下 <!-- 2.v-bind提供一个语法糖 : --> </template> const App = { template: '#my-app', data() { return { imgUrl: "https://avatars.githubusercontent.com/u/10335230?s=60&v=4", link: "https://www.baidu.com" } } } Vue.createApp(...