Skip to content

Instantly share code, notes, and snippets.

View sunshineLixun's full-sized avatar
🎉
Focusing

Hello Li sunshineLixun

🎉
Focusing
View GitHub Profile
@sxzz
sxzz / Vue 3.3 主要新特性详解.md
Last active January 15, 2024 04:22
Vue 3.3 主要新特性详解

Vue 3.3 主要新特性详解

前言

Hi,这里是三咲智子,Vue 核心团队成员。Vue 3.3 的这次发布主要是为了改进 DX (开发者体验),新增了一些语法糖和宏,以及 TypeScript 上的改善。

  • 泛型组件
  • 在 SFC(单文件组件)中导入外部 TS 类型
  • defineSlots 来定义插槽的类型
  • defineEmits 更便捷的语法
@kishikawakatsumi
kishikawakatsumi / ReorderingRealmResultsInTableView.swift
Created July 27, 2016 04:51
Reorder Realm Results in UITableView
import UIKit
import RealmSwift
class Data: Object {
dynamic var name = ""
...
dynamic var order = 0 // 並べ替えのためのカラムが必要
}