vue 模板 template init

<template>
  <div>
  </div>
</template>

<script>
export default {
  name: '模板名称',
  props: {},
  components: {},
  data () {
    return {
    }
  },
  computed: {},
  methods: {},
  created () { },
  activated () { },
  mounted () { },
  beforeDestroy () { }
}
</script>

<style lang="less">
</style>

猜你喜欢

转载自www.cnblogs.com/pengchenggang/p/12042673.html