【springboot系列】前端工程之从零开始创建vue工程

文章目录

  • 从零开始创建vue工程
    • 一、创建vue项目
      • 1、方案一
      • 2、方案二
    • 二、写一个登录页面

从零开始创建vue工程

一、创建vue项目

1、默认环境已装好,以下三个命令可执行。
【springboot系列】前端工程之从零开始创建vue工程_第1张图片

1、方案一

1、创建项目命令如下:其中我的项目名称就叫springboot-vue

vue create springboot-vue

2、选择手动安装:
添加路由组件、vuex、css展示组件等

1、手动模式选择组件
2、sass
3、代码规范airbnb
4、保存时lint

【springboot系列】前端工程之从零开始创建vue工程_第2张图片

2、方案二

vue ui

在这里插入图片描述
【springboot系列】前端工程之从零开始创建vue工程_第3张图片
图形化界面比较简单,略。
关注以下几个代码:
【springboot系列】前端工程之从零开始创建vue工程_第4张图片

二、写一个登录页面

1、将自动生成的项目导入webstorm
2、新建一个Login.vue页面

3、直接上代码:

<template>
    <div class="login-page">
        
        <div id="bg">div>
        
        <form class="login-form">
            <div class="login-title">账号登录div>
            <input type="text" class="input-content" placeholder="请输入用户名" v-model="username">
            <div v-if="username==''">
                <div class="signup_item_content_tips_error">请输入用户名div>
            div>
            <div v-else>
                <div class="signup_item_content_tips_error_hidden">默认占位div>
            div>
            <input type="password" placeholder="请输入密码" class="input-content" v-model="password">
            <div v-if="password==''">
                <div class="signup_item_content_tips_error">请输入密码div>
            div>
            <div v-else>
                <div class="signup_item_content_tips_error_hidden">默认占位div>
            div>
            <div @click="login()" class="login-text">登 录div>
        form>
    div>
template>

<script>
    export default {
        name: "Login",
        data() {
            return {
                username: '',
                password: ''
            }
        },
        methods: {
            login() {
                if (this.username != '' && this.password != '') {
                    console.log(this.username + "-------登录-------" + this.password)
                }
            }
        }
    }
script>

<style scoped lang="scss">
    #bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -10;
        zoom: 1;
        background-image: url("../assets/loginbg.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        -webkit-background-size: cover;
        -o-background-size: cover;
        background-position: center 0;
    }

    .login-form {
        display: block;
        border-radius: 4px;
        background: white;
        padding: 20px;
        position: fixed;
        top: 50%;
        left: 50%;
        /*transform: translateY(-50%) 实现元素垂直居中效果*/
        transform: translate(-50%, -50%);
        width: 300px;
    }

    .login-text {
        text-align: center;
        background: #4B6EA4;
        margin-top: 25px;
        padding-top: 8px;
        padding-bottom: 8px;
        font-size: 16px;
        color: white;
        border-radius: 2px;
        font-family: "PingFang SC", "Helvetica Neue", "Arial", "Hiragino Sans GB", "STHeiti", "Microsoft YaHei", sans-serif;
    }

    .input-content {
        background-color: white;
        word-wrap: normal;
        display: block;
        word-break: keep-all;
        white-space: nowrap;
        padding: 5px 16px;
        font-size: 14px;
        line-height: 18px;
        width: 100%;
        height: 45px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-radius: 2px;
        border: 1px solid #C9C9C9;
    }

    .login-title {
        font-family: "PingFang SC", "Helvetica Neue", "Arial", "Hiragino Sans GB", "STHeiti", "Microsoft YaHei", sans-serif;
        text-align: center;
        font-weight: 500;

        /* font-size: 15px; */
        /* color: #4370cb; */
        font-size: 16px;
        margin-bottom: 25px;
        color: #4B6EA4;
    }

    .signup_item_content_tips_error {
        margin-top: 4px;
        margin-bottom: 8px;
        font-size: 12px;
        color: #F15A5A;
        text-align: left;
    }

    .signup_item_content_tips_error_hidden {
        margin-top: 4px;
        margin-bottom: 8px;
        font-size: 12px;
        color: #F15A5A;
        text-align: left;
        visibility: hidden;
    }
style>

你可能感兴趣的:(【springboot系列】前端工程之从零开始创建vue工程)