<a>

<a> 是一个用于实现页面间的跳转或关闭的组件。

子组件

不可以在标签内部直接添加文本,需要使用 <text> 标签来显示文本。

示例代码

<template>
    <div class="wrapper">

        <a class="button" href="http://g.tbcdn.cn/amte-fe/amte-resource/0.0.8/fast/show_1.js">
            <text class="text">去主会场</text>
        </a>

        <a class="button" href="-1">
            <text class="text">关闭</text>
        </a>

    </div>
</template>

<style scoped>
    .wrapper {
        align-items: center;
        justify-content: center;
    }
    .button {
        width: 350px;
        padding-top: 20px;
        padding-bottom: 20px;
        border-radius: 5px;
        background-color: #3eaf7c;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .text {
        font-size: 48px;
        color: #fff;
        text-align: center;
    }
</style>

配置参数

例如:

<a 
    href="http://.../xxx.js"
    statusBarColor="#ff0000"><text>红色导航栏</text></a>