Vuejs实现带样式的单文件组件新方法

网络编程 2021-07-04 18:32www.168986.cn编程入门
这篇文章主要为大家详细为大家详细介绍了Vuejs实现带样式的单文件组件的新方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了Vuejs实现单文件组件的方法,供大家参考,具体内容如下

代码如下:

example.html

<script src="vue.js"></script>
<div id="example">
 <h3>Vue ponent<h3>
 <counter></counter>
 <counter></counter>
</div>
//引入组件myp.js
<script src="myp.js"></script>
<script>
new Vue({
  el: '#example'
})
</script>


myp.js

//heredoc方法输出注释中的组件代码
function heredoc(fn){
  return fn.toString().match(/[^]\/\([^])\\/\}$/)[1];
}
//输出组件代码
document.write(heredoc(function(){
/
<style>
.my {color:red;padding:10px;}
</style>

<script type="text/x-template" id="c">
<p class="my" v-on:click="todo+=1">
 {{todo}}
</p>
</script>

<script>
Vue.ponent('counter',{
 template: "#c",
 data: function () {
  return {
    todo: 1
  }
 }
})
</script>
 

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by