详解如何创建并发布一个 vue 组件

时间:2021-05-25

步骤

创建 vue 的脚手架

npm install -g @vue/clivue init webpack

绑定 git 项目

cd existing_foldergit initgit remote add origin http://gitlab.alipay-inc.com/ampg/my-projec.gitgit add .git commitgit push -u origin master

写组件

创建组件 src/components/xxx.vue

例如:

<template> <div class="hello"> <h1>{{ msg }}</h1> <h2>Essential Links</h2> </div></template><script>export default { name: 'HelloWorld', data () { return { msg: 'Welcome to Your Vue.js App' } }}</script><!-- Add "scoped" attribute to limit CSS to this component only --><style scoped>h1, h2 { font-weight: normal;}</style>

发布

npm publish

展示

代码参考
vue-component-popup

参考文档
Packaging Vue Components for npm
Vue CLI 3
vue-sfc-rollup

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章