当我们想要在HTML页面中使用Vue.js和Element UI时,可以通过以下两种方法引入它们:
一、通过CDN引入
我们可以通过使用CDN引入Vue.js和Element UI,如下所示:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Vue.js and Element UI Example</title>
<link rel="stylesheet" href="//unpkg.com/element-ui/lib/theme-chalk/index.css">
</head>
<body>
<div id="app">
<el-button type="primary">Hello Element UI</el-button>
</div>
<!-- 引入 Vue -->
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<!-- 引入 Element UI -->
<script src="//unpkg.com/element-ui/lib/index.js"></script>
<script>
// Vue.js 代码
new Vue({
el: '#app'
});
</script>
</body>
</html>
在这个例子中,我们首先通过 <link>
标签引入 Element UI 样式文件,并在 <body>
标签中创建了一个 <div>
元素。
然后我们又通过 <script>
标签引入了 Vue.js 和 Element UI 的 JavaScript 文件,并在 Vue.js 代码中创建了一个 Vue 实例,将其挂载到 id 为 "app" 的元素上,这样就可以在页面上使用 Element UI 的组件了。
二、通过npm引入
我们也可以通过 npm 安装 Vue.js 和 Element UI。下面的代码展示了如何在HTML页面中引入 Vue.js 和 Element UI:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Vue.js and Element UI Example</title>
<link rel="stylesheet" href="path/to/element-ui/lib/theme-chalk/index.css">
</head>
<body>
<div id="app">
<el-button type="primary">Hello Element UI</el-button>
</div>
<!-- 引入 Vue -->
<script src="path/to/vue.js"></script>
<!-- 引入 Element UI -->
<script src="path/to/element-ui/lib/index.js"></script>
<script>
// Vue.js 代码
import Vue from 'vue'
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
Vue.use(ElementUI)
new Vue({
el: '#app'
});
</script>
</body>
</html>
在这个例子中,我们通过 <link>
标签引入了 Element UI 样式文件,并在 <body>
标签中创建了一个 <div>
元素。
然后我们通过 <script>
标签引入了 Vue.js 和 Element UI 的 JavaScript 文件,并使用了 ES6 的 import
语法来引入 Vue 和 Element UI。我们还将 Element UI 注册到了 Vue 实例中,即通过 Vue.use(ElementUI)
。最后,和第一个例子一样,我们创建了一个 Vue 实例并将其挂载到 id 为 "app" 的元素上。
以上是通过html直接引用vue和element-ui的方法的详细攻略,希望对您有帮助。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:html直接引用vue和element-ui的方法 - Python技术站