VUE中常用的几种引入方式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VUE中常用的几种引入方式相关的知识,希望对你有一定的参考价值。
参考技术A 1 引入第三方插件import echarts from 'echarts'
2 引入工具类
第一种是引入单个方法
import axiosfetch from './util';
下面是写法,需要export导出
export function axiosfetch(options)
第二种 导入成组的方法
import * as tools from './libs/tools'
其中tools.js中有多个export方法,把tools里所有export的方法导入
vue中怎么用呢?
Vue.prototype. tools.method调用就可以了
export 和 export default 又有什么区别呢?
下面看下区别
先是 export
import axiosfetch from './util';
//需要加花括号 可以一次导入多个也可以一次导入一个,但都要加括号
如果是两个方法
import axiosfetch,post from './util';
再是 export default
import axiosfetch from './util'; //不需要加花括号 只能一个一个导入
3.导入 css文件
import 'iview/dist/styles/iview.css';
如果是在.vue文件中那么在外面套个style
<style>
@import './test.css';
</style>
4.导入组件
import name1 from './name1'
import name2 from './name2'
components:
name1,
name2,
17.在vue中怎么动态样式类的几种方式
这节课,我们来看下 Vue 中动态设置样式的几种方式。在 Vue 中有专门为 class
和 style
的 v-bind
用法提供了特殊的功能增强。除了字符串外,表达式的值也可以是对象或数组。
我经常用的一种模式就是使用 boolean
标志,如下所示:
<template>
<div :class="disabled && \'disabled-component\'">
当 disabled 为 true 时,这个组件被禁用了。
</div>
</template>
<style scoped>
.disabled-component
background-color: gray;
color: darkgray;
cursor: not-allowed;
</style>
这里通过一个变量或计算属性 disabled
来开启或关闭 \'disabled-component\'
,当 disabled
为 true
时,开启样式 \'disabled-component\'
,否则关闭,这样就能简单动态的设置样式了。
disabled()
以上是关于VUE中常用的几种引入方式的主要内容,如果未能解决你的问题,请参考以下文章