首页 > 在Vue的webpack中结合runder函数

在Vue的webpack中结合runder函数

-->

在Vue的webpack中结合runder函数

1.引入:

下面是vue的内容:

2.main.js

//默认无法打包vue文件 需安装vue-loader
import Vue from  'vue'
import  login from './login.vue'var vm = new Vue({el:"#app",data:{msg:'123'},// components:{//     'login':login// },render:function (createElement) { //在webpack中如果需要vue放到页面中展示 vm实例中的render函数可以实现return createElement(login)}})

3.拉取相关的loader

npm i vue-loader vue-template-compiler -D

4.在webpack.config.js中加入

const VueLoaderPlugin = require('vue-loader/lib/plugin');module.exports = {devtool: "sourcemap",entry: './js/entry.js', // 入口文件output: {filename: 'bundle.js' // 打包出来的wenjian},plugins: [// make sure to include the plugin for the magicnew VueLoaderPlugin()],module : {...}}

转载于:https://www.cnblogs.com/charlypage/p/9949685.html

更多相关:

  • 1 未登录访问鉴权页面如何处理? 如果未登录访问了一个作了 login_required 限制的 view,那么 Flask-Login 会默认 flash一条消息,并且将重定向到login_view,如果你没有指定login_view,那么 Flask-Login 将会抛出一个 401 错误,比如 app.secret_key =...

  • index.html