|
@@ -18,19 +18,18 @@ export default {
|
|
|
console.log("about vue component setup");
|
|
|
},
|
|
|
mounted(el){
|
|
|
+ import "../../style/common.css";
|
|
|
console.log("about vue under mounted ---");
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
<style scoped>
|
|
|
+/* @import url(../../style/common.css); */
|
|
|
.register{
|
|
|
width:80%;
|
|
|
- height:50%;
|
|
|
- /* display: flex; */
|
|
|
+ display: flex;
|
|
|
justify-content: center;
|
|
|
align-items: center;
|
|
|
- background-color: aqua;
|
|
|
- backdrop-filter: blur(3px);
|
|
|
}
|
|
|
</style>
|
|
|
|