<template> <div class="form_container"> </div> </template> <style scoped> .form_container { position: relative; width: 100%; height: 100vh; background: url(../../assets/bg2.png) no-repeat; background-size: cover; } </style>
时间: 2024-03-29 12:41:08 浏览: 104
浅析Boost智能指针:scoped_ptr shared_ptr weak_ptr
这是一个 Vue.js 的模板代码,包含一个名为 form_container 的 div 元素,以及一个 scoped 的 style 标签。在 style 标签中,.form_container 类被定义为一个相对定位的元素,并设置了宽度、高度、背景图片和背景大小。 scoped 属性表示该样式只适用于当前组件,不会影响全局样式。
阅读全文