底部加上vue的script

<!-- development version, includes helpful console warnings -->
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<!-- vuetify -->
<script src="https://unpkg.com/vuetify@1.0.17/dist/vuetify.min.js"></script>

样式引用

<link href="https://cdn.staticfile.org/material-design-iconic-font/2.2.0/css/material-design-iconic-font.css" rel="stylesheet"/>
<link href="https://unpkg.com/vuetify@1.0.17/dist/vuetify.min.css" rel="stylesheet">
<style>
	[v-cloak] {
		display: none;
	}
</style>

页面body体上加入展示元素

<div >
    <v-content v-cloak>
        <v-container>
            <h1 :title="msg">Hello, single Vue!</h1>
        </v-container>
    </v-content>
</div>

启动js

var app = new Vue({
	el: '#app',
	data: {
		msg: 'Hello'
	}
})

https://gist.github.com/terwer/0f9e19c1a2f345e04c2eb91609489026

在线查看

https://runjs.cn/detail/kpscnn6a

相关文章:

  • 2021-10-02
  • 2022-01-18
  • 2022-12-23
  • 2021-05-21
  • 2022-12-23
  • 2021-09-25
  • 2022-12-23
  • 2022-01-08
猜你喜欢
  • 2022-12-23
  • 2021-10-01
  • 2021-09-13
  • 2021-12-13
  • 2021-09-25
  • 2022-01-24
  • 2022-12-23
相关资源
相似解决方案