v-bind的绑定属性 绑定基本属性 01_v-bind的基本使用.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <
-- 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(...