Skip to content

⬅️ Back to Table of Contents

📄 Utility.vue

📊 Analysis Summary

Metric Count
🧱 Classes 1
📊 Variables & Constants 2

📚 Table of Contents

🛠️ File Location:

📂 packages/integration-tests/fixtures/vue-sfc/Utility.vue

Variables & Constants

Name Type Kind Value Exported
list Array<string> const []
a string[] const this.a as Array<string>

Classes

Utility

Class Code
export default class Utility {
  get a() {
    const list: Array<string> = [];
    return list;
  }

  get b() {
    const a = this.a as Array<string>;
    return a;
  }
}