码迷,mamicode.com
首页 > Web开发 > 详细

在静态页面中使用 Vue.js

时间:2019-08-13 22:38:08      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:unp   route   div   containe   javascrip   style   routes   asi   round   

在静态页面中使用 Vue.js

不使用Node.js, NPM, Webpack 等, 在静态页中使用Vue.js. 包括路由, 单文件组件.

1. 创建index.html

index.html做为项目的首页, 主要用来定义页面框架, 加载必需的cssscript.
这里使用element-ui的导航菜单组件搭建了一个页面框架.

需要注意的是, <el-menu> 标签要加上 :default-active="$route.path"@select="handleSelect"; 有了这两个属性才能实现路由的跳转.

在菜单项<el-meun-item>标签中要加上index="menu-2-index"属性, 意思就是当前菜单对应的路由.

最后不要忘记"<router-view></router-view>". Vue 组件将会被填充的这里.

script主要引用的有vuevue-router以及element-ui, ajax请求使用的是axios, 如果不喜欢可以更换为jQuery等.

<!DOCTYPE html>
<html lang="en" xmlns:th="http:www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
    <title>Vue Test</title>
</head>
<body>
    <div id="app">
        <el-container style="border: 1px solid #eee">
            <el-aside width="200px" style="background-color: rgb(238, 241, 246)">
                <el-menu :default-openeds="['1']" :default-active="$route.path" @select="handleSelect">
                    <el-menu-item index="">
                        <template slot="title"><i class="el-icon-message"></i>菜单1</template>
                    </el-menu-item>
                    <el-menu-item index="/menu-2-index">
                        <template slot="title"><i class="el-icon-menu"></i>菜单2</template>
                    </el-menu-item>
                    <el-menu-item index="/menu-3-index">
                        <template slot="title"><i class="el-icon-setting"></i>菜单3</template>
                    </el-menu-item>
                </el-menu>
            </el-aside>
            <el-container>
                <router-view></router-view>
            </el-container>
        </el-container>
    </div>
    <script src="https://unpkg.com/vue/dist/vue.js"></script>
    <script src="https://unpkg.com/vue-router/dist/vue-router.js "></script>
    <script src="https://unpkg.com/element-ui/lib/index.js"></script>
    <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
    <script src="./js/util.js"></script>
    <script src="./js/route.js"></script>
    <script src="./js/main.js"></script>
</body>
</html>

2. 创建单文件组件

单文件组件格式与 Vue 官网实例一致, HTML片段必须使用<template>标签包括.

<template>
    <div id="menu1">
        <h1>Hello Menu 1</h1>
        <h2>{{message}}</h2>
    </div>
</template>

<script>
    exports = {
        data: function () {
            return {
                message: 'Hello Vue!'
            }
        }
    }
</script>

<style>
    #menu1 {
        font-size: 12px;
    }
</style>

3. 定义路由配置

组件的加载使用异步方式, util.loadComponent(url), 此方法中传入服务器url, 接收服务器返回的单文件组件, 即HTML片段.

var routes = [{
    path: '/menu-1-index',
    name: 'menu-1-index',
    component: util.loadComponent('../views/menu1.html')
}, {
    path: '/menu-2-index',
    name: 'menu-2-index',
    component: util.loadComponent('./views/menu2.html')
}];

var router = new VueRouter({
    routes: routes
});

4. 定义main.js

Vue实例中绑定路由, 并实现handleSelect方法, 用于路由的跳转.

var app = new Vue({
    el: '#app',
    router : router,
    data: function () {
        return {
            activeIndex:1,
        }
    },
    methods: {
        handleSelect : function(key, path) {
            console.log(key, path)
            this.$router.push(key)
        }
    }
});

可在附件中下载实例代码: 附件

在静态页面中使用 Vue.js

标签:unp   route   div   containe   javascrip   style   routes   asi   round   

原文地址:https://www.cnblogs.com/aning2015/p/11348815.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!