08335 / hivui-platform-template
hivui平台项目模板
Newer
Older
hivui-platform-template / project / hivuiLogin / App.vue
caibinghong on 11 Jun 2021 add
<template>
    <div>
        login
        <button @click="click">--[button]--</button>
        <Test />
    </div>
</template>
<script>
import Test from "./test"
export default {
    components:{
        Test
    },
    mounted(){

    },
    methods:{
        click(){
            this.$message.error('警告,浏览器没有按正常比例显示会影响部份功能!')
        }
    }
}
</script>
<style lang="less">
button{
    background: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border:1px #eee solid;
}
</style>