How to directly reference vue and element-ui in html

How to directly reference vue and element-ui in html

The code looks like this:

<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
    <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
    <script src="https://unpkg.com/element-ui/lib/index.js"></script>
</head>

<body>
    <div id="app">
        <el-button round @click="visible = true">Rounded button</el-button>
        <br>
        <el-dialog :visible.sync="visible" title="Hello world">
            <p>Try Element</p>
        </el-dialog>
        <br>

        <el-switch v-model="value1" active-text="Monthly payment" inactive-text="Annual payment">
        </el-switch>
        <el-switch style="display: block" v-model="value2" active-color="#13ce66" inactive-color="#ff4949"
            active-text="Monthly Payment" inactive-text="Annual Payment">
        </el-switch>

        <br>
        <el-time-picker is-range v-model="value1" range-separator="to" start-placeholder="start time" end-placeholder="end time"
            placeholder="Select a time range">
        </el-time-picker>
        <el-time-picker is-range arrow-control v-model="value2" range-separator="to" start-placeholder="start time"
            end-placeholder="end time" placeholder="select time range">
        </el-time-picker>
        <br>

        <el-progress type="circle" :percentage="0"></el-progress>
        <el-progress type="circle" :percentage="25"></el-progress>
        <el-progress type="circle" :percentage="100" status="success"></el-progress>
        <el-progress type="circle" :percentage="70" status="warning"></el-progress>
        <el-progress type="circle" :percentage="50" status="exception"></el-progress>
        <br>
        <el-row>
            <el-button icon="el-icon-search" circle></el-button>
            <el-button type="primary" icon="el-icon-edit" circle></el-button>
            <el-button type="success" icon="el-icon-check" circle></el-button>
            <el-button type="info" icon="el-icon-message" circle></el-button>
            <el-button type="warning" icon="el-icon-star-off" circle></el-button>
            <el-button type="danger" icon="el-icon-delete" circle></el-button>
        </el-row>
        <br>
        <el-steps :active="1" finish-status="success">
            <el-step title="Paid"></el-step>
            <el-step title="Refund in progress"></el-step>
            <el-step title="Refunded"></el-step>
            <el-step title="Pending Settlement"></el-step>
            <el-step title="Settled"></el-step>
        </el-steps>
    </div>
</body>
<script>
    new Vue({
        el: '#app',
        data: function () {
            return { visible: false }
        }
    })
</script>

</html>

The effect is as shown below:

insert image description here

Summarize

This is the end of this article about how to directly reference vue and element-ui in html. For more relevant content about html referencing vue and element-ui, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  Solution to the problem of adaptive height and width of css display table

>>:  Say goodbye to hard coding and let your front-end table automatically calculate the instance code

Recommend

An article to master MySQL index query optimization skills

Preface This article summarizes some common MySQL...

Three examples of blur background effects using CSS3

Let’s not start with the introduction and get str...

This article will show you how to use SQL CASE WHEN in detail

Table of contents Simple CASEWHEN function: This ...

WeChat applet realizes left-right linkage

This article shares the specific code for WeChat ...

Table shows the border code you want to display

Common properties of tables The basic attributes ...

Detailed process of compiling and installing Storm on Kylin V10 server

1 Introduction Apache Storm is a free, open sourc...

How to use Nginx to solve front-end cross-domain problems

Preface When developing static pages, such as Vue...

How to use html2canvas to convert HTML code into images

Convert code to image using html2canvas is a very...

CSS3 to achieve timeline effects

Recently, when I turned on my computer, I saw tha...

5 Reasons Why Responsive Web Design Isn’t Worth It

This article is from Tom Ewer's Managewp blog,...

Gearman + MySQL to achieve persistence operation example

This article uses the gearman+mysql method to imp...