暂无权限

加入尚新途,才有权限看这些视频哦!

点击前往
×
问答
旺旺碎冰冰
1楼

老师,在<label for="mike">Mike</label>中,这个for是什么意思?

尚新途

和上面的表单绑定,绑定指定id的元素

image.png

流年岁月
2楼
<template>
  <div id="app">
    <APIDemo2 />
  </div>
</template>

<script>
import APIDemo1 from './components/APIDemo1';
import APIDemo2 from './components/APIDemo2';
import HelloWorld from './components/HelloWorld'
export default {
  name: 'App',
  components:{
    HelloWorld,
    APIDemo1,
    APIDemo2,
  }
}
</script>

<style>
#app {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>
<template>
  <div>
    API
  </div>
</template>

<script>
    export default {
        name: "AIPDemo2",
      data(){
        return{

        }
      }
    }
</script>

<style scoped>

</style>

image.png

尚新途

把你这个项目的代码压缩提交上来

尚新途

我练一遍代码复用,然后就好了


尚新途

好的

自我检测(5S)