質問編集履歴
3
編集
test
CHANGED
File without changes
|
test
CHANGED
@@ -33,3 +33,51 @@
|
|
33
33
|
</template>
|
34
34
|
|
35
35
|
```
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
//追記
|
42
|
+
|
43
|
+
```ここに言語を入力
|
44
|
+
|
45
|
+
<template>
|
46
|
+
|
47
|
+
<p class="label">{{ text }}</p>
|
48
|
+
|
49
|
+
</template>
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
<script lang="ts">
|
54
|
+
|
55
|
+
import { Component, Vue, Prop } from 'vue-property-decorator'
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
@Component({
|
60
|
+
|
61
|
+
export default class Text extends Vue {
|
62
|
+
|
63
|
+
@Prop({ type: String, required: true }) text: string
|
64
|
+
|
65
|
+
}
|
66
|
+
|
67
|
+
GetUrlInText() {
|
68
|
+
|
69
|
+
const matches = this.text.match(/https?://\S+/gi)
|
70
|
+
|
71
|
+
if(matches != null) {
|
72
|
+
|
73
|
+
return matches
|
74
|
+
|
75
|
+
} else {
|
76
|
+
|
77
|
+
return []
|
78
|
+
|
79
|
+
}
|
80
|
+
|
81
|
+
}
|
82
|
+
|
83
|
+
```
|
2
編集
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|
**やりたいこと**
|
2
|
+
|
3
|
+
Vue.jsを使っています
|
2
4
|
|
3
5
|
テキストの中身にURLが入っていそれをクリックしたらそのULRまで遷移できるようにしたいです。
|
4
6
|
|
1
編集
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
|
13
13
|
このサイト面白いよーーー
|
14
14
|
|
15
|
-
https//
|
15
|
+
https:// ufdgwufkdgksfdkshkjd
|
16
16
|
|
17
17
|
```
|
18
18
|
|