剑豪小宝宝 發表於 2019-8-1 18:56:00

vue-property-decorator vue typescript写法

<h3 id="什么是typescript">什么是Typescript</h3>
<p>TypeScript 是一种由微软开发的自由和开源的编程语言,它是 JavaScript 的一个超集,扩展了 JavaScript 的语法。作者是安德斯大爷, Delphi、C# 之父(你大爷永远是你大爷)。把弱类型语言改成了强类型语言,拥有了静态类型安全检查, IDE 智能提示和追踪,代码重构简单、可读性强等特点。<br>
现在VUE 也支持了 TypeScript ,面对安德斯大爷放出的这些大招,果断用之。</p>
<h3 id="安装使用">安装使用</h3>
<p>使用 vue-cli 创建项目的时候 选择Typescript就行了,<br>
注意下几个配置文件<br>
<img src="https://upload-images.jianshu.io/upload_images/8145282-ab52eb2486b06a14.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" alt="image.png" loading="lazy"><br>
tsconfig.json</p>
<pre><code>{
"compilerOptions": {
    "target": "esnext",
    "module": "esnext",
    "strict": true,
    "jsx": "preserve",
    "importHelpers": true,
    "moduleResolution": "node",
    "experimentalDecorators": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "sourceMap": true,
    "baseUrl": ".",
    "types": [
      "webpack-env"
    ],
    "paths": {
      "@/*": [
      "src/*"
      ]
    },
    "lib": [
      "esnext",
      "dom",
      "dom.iterable",
      "scripthost"
    ]
},
"include": [
    "src/**/*.ts",
    "src/**/*.tsx",
    "src/**/*.vue",
    "tests/**/*.ts",
    "tests/**/*.tsx"
],
"exclude": [
    "node_modules"
]
}

</code></pre>
<p>tslint.json</p>
<pre><code>{
"defaultSeverity": "warning",
"extends": [
    "tslint:recommended"
],
"linterOptions": {
    "exclude": [
      "node_modules/**"
    ]
},
"rules": {
    "quotemark": ,
    "indent": ,
    "interface-name": false,
    "ordered-imports": false,
    "object-literal-sort-keys": false,
    "no-consecutive-blank-lines": false,
    "no-console": false, //允许使用console
    "member-access": , //禁止指定公共可访问性,因为这是默认值
    // "noImplicitAny": false, //允许参数而不声明其类型
    "one-variable-per-declaration": false, //允许在同一声明语句中使用多个变量定义
    "no-unused-expression": , //允许使用逻辑运算符执行快速空检查并执行副作用的方法或函数调用( 例如e &amp;&amp; e.preventDefault())
    "curly": ,
    "arrow-parens": ,
    "semicolon": ,//是否提示不必要的分号
    "trailing-comma": [
      true,
      {
      "multiline": {
          "objects": "ignore",
          "arrays": "ignore",
          "functions": "ignore",
          "typeLiterals": "ignore"
      },
      "esSpecCompliant": true
      }
    ]
}
}
</code></pre>
<h3 id="重要的是怎么在项目中使用typescrit写法">重要的是怎么在项目中使用Typescrit写法</h3>
<p>1:安装npm install --save vue-property-decorator<br>
此类库提供了7个装饰器</p>
<ul>
<li>@Emit</li>
<li>@Inject</li>
<li>@Model</li>
<li>@Prop</li>
<li>@Provide</li>
<li>@Watch</li>
<li>@Component<br>
实现生成像原生 JavaScript class 那样的声明组件。</li>
</ul>
<p>下面分别给出实例解释其用法:</p>
<ul>
<li>@Component<br>
组件声明<br>
原生写法</li>
</ul>
<pre><code>import UploadImage from '@/components/UploadImage'

export default {
name: 'user',
components: { UploadImage },
data() {
    return {
      name:"张三",
      sex: '男'
    }
},
methods: {
    funcA(params) {},
    funcB() {}
}
}
</code></pre>
<p>使用Ts中写法</p>
<pre><code>import UploadImage from '@/components/UploadImage'
import { Component, Vue, Provide } from 'vue-property-decorator'

@Component(name:"user",components:{UploadImage})
export default class user extends Vue{
    private name:string="张三"
    private sex:string="男"

    private funcA(params:any){}
    private funcB(){}
}
</code></pre>
<p>其中使用 @Component 声明了 user组件 ,同时引用 子组件 UploadImage,写在 Components 参数中。</p>
<ul>
<li>@Prop<br>
属性声明 在自定义组建中使用<br>
原生写法</li>
</ul>
<pre><code>export default{
    name:"upload",
    props:{
          value:{
               type:String,
               default:''
          }
    }
}
</code></pre>
<p>在ts中写法</p>
<pre><code>@Component()
export default class upload extends Vue{
       @Prop()
       private value:string='';
}
</code></pre>
<ul>
<li>computed<br>
计算属性<br>
这个很类似于c#中的 属性概念,属性值本身可以通过计算得出。</li>
</ul>
<p>原生写法</p>
<pre><code>computed: {
    imageUrl() {
      return 'http://xxxx.xxxx.com/' + this.value;//value是定义的一个字段
    }
},
</code></pre>
<p>在ts中写法</p>
<pre><code>get imageUrl(){
      return 'http://xxxx.xxxx.com/' + this.value;//value是定义的一个字段
}

template 中一样使用{{imageUrl}}
</code></pre>
<ul>
<li>@watch<br>
用来监测Vue实例上的数据变动<br>
如果对应一个对象,键是观察表达式,值是对应回调,值也可以是方法名,或者是对象,包含选项。</li>
</ul>
<pre><code>export default {
    name: 'index',
    data() {
      return {
      demo: {
          name: ''
      },
      value: ''
      };
    },
    computed: {
      newName() {
      return this.demo.name;
      }
    },
    watch: {
      newName(val) {
      this.value = val;
      }
    }
};
</code></pre>
<p>ts写法</p>
<pre><code>export default class index extends Vue{
      demo:any={name:''};
      value:string='';

      get newName(){
            return this.demo.name;
      }

      @watch('wnewName')
      wnewName(val){
                  this.value=val;
      }
}
</code></pre>
<ul>
<li>emit<br>
我们知道,父组件是使用 props 传递数据给子组件,但如果子组件要把数据传递回去,应该怎样做?那就是自定义事件!</li>
</ul>
<p>每个 Vue 实例都实现了事件接口(Events interface),即:</p>
<pre><code>-   使用 $on(eventName) 监听事件
-   使用 $emit(eventName)触发事件
</code></pre>
<pre><code>Vue.component('counter', {
template: `
&lt;button v-on:click="increment"&gt;{{ counter }}&lt;/button&gt;`,
data() {
    return {
      counter: 0
    }
},
methods: {
    increment: function () {
      this.counter += 1
      this.$emit('increment')
    }
},
});

new Vue({
el: '#example',
data: {
    total: 0
},
methods: {
    incrementTotal: function () {
      this.total += 1
    }
}
})

&lt;div id="example"&gt;
&lt;p&gt;{{ total }}&lt;/p&gt;
&lt;counter v-on:increment="incrementTotal"&gt;&lt;/counter&gt;
&lt;/div&gt;
</code></pre>
<p>子组件自定义了个事件,然后把这个事件发射出去,父组件使用这个事件</p><br><br>
来源:https://www.cnblogs.com/sands/p/11284596.html
頁: [1]
查看完整版本: vue-property-decorator vue typescript写法