Flask接口签名sign原理与实例代码浅析
233
2023-03-10
3种vue组件的书写形式
本文实例为大家分享了vue组件的书写形式,供大家参考,具体内容如下
第一种使用script标签
<-- 注意:使用
//全局注册组件
Vue.component('my-component',{
template: '#myComponent'
})
new Vue({
el: '#app'
})
第二种使用template标签
Vue.component('my-component',{
template: '#myComponent'
})
new Vue({
el: '#app'
})
第三种 单文件组件
这种方法常用在vue单页应用中。详情看官网:https://cn.vuejs.org/v2/guide/single-file-components.html
创建.vue后缀的文件,组件Hello.vue,放到components文件夹中
&http://lt;script>
export default {
name: 'hello',
data () {
return {
msg: '欢迎!'
}
}
}
app.vue
// 导入组件
import Hello from './components/Hello'
export default {
name: 'app',
components: {
Hello
}
}
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-fohttp://nt-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~